How do you initialize a class member,
class x {
const int i;
};

Answers were Sorted based on User's Feedback



How do you initialize a class member, class x { const int i; };..

Answer / pappu

class abc
{
int a=4,b=3;
virtual mul(int int)=0;
}

Is This Answer Correct ?    10 Yes 1 No

How do you initialize a class member, class x { const int i; };..

Answer / guest

x()
{i=10;
}

Is This Answer Correct ?    3 Yes 1 No

How do you initialize a class member, class x { const int i; };..

Answer / santosh patil

class members can be initialized directly like
class x{const int i=10;}
but its structures members tat cant be initialized lik above

Is This Answer Correct ?    2 Yes 0 No

How do you initialize a class member, class x { const int i; };..

Answer / pc1989

x variable();

Is This Answer Correct ?    2 Yes 1 No

How do you initialize a class member, class x { const int i; };..

Answer / harminder

It can be done in the intialization list of the constructor

x():i=10
{
}

Is This Answer Correct ?    3 Yes 2 No

How do you initialize a class member, class x { const int i; };..

Answer / gayatri

using constructor we can initialize a class member in public
part of class.

class x
{
private: int i;

public: x()
{
i = 10;
}

Is This Answer Correct ?    1 Yes 0 No

How do you initialize a class member, class x { const int i; };..

Answer / jp

const data members must be initialized using Initializer List. In the following example, “t” is a const data member of Test class and is initialized using Initializer List.

#include<iostream>
using namespace std;

class Test {
const int t;
public:
Test(int t):t(t) {} //Initializer list must be used
int getT() { return t; }
};

int main() {
Test t1(10);
cout<<t1.getT();
return 0;
}

/* OUTPUT:
10
*/

Is This Answer Correct ?    0 Yes 0 No

How do you initialize a class member, class x { const int i; };..

Answer / anandam niranjan

i think it's not possible

Is This Answer Correct ?    5 Yes 6 No

Post New Answer

More C++ General Interview Questions

What is the exit function in c++?

0 Answers  


Write about the role of c++ in the tradeoff of safety vs. Usability?

0 Answers  


Does dev c++ support c++ 11?

0 Answers  


simple c++ program for "abcde123ba" convert "ab321edcba" with out using string

5 Answers  


What is a static element?

0 Answers  






Which compiler does turbo c++ use?

0 Answers  


Which sort is best for the set: 1 2 3 5 4 a) Quick Sort b) Bubble Sort c) Merge Sort

0 Answers  


How can you tell what shell you are running on unix system?

0 Answers  


Explain how we implement exception handling in c++?

0 Answers  


Why do we use templates?

0 Answers  


How can I improve my c++ skills?

0 Answers  


How java is different from c and c++?

0 Answers  


Categories