what will happen if we define a constructor in protected scope in a class?
for eg
class some
{
int x;
protected:
some()
{
x=90;
}
};
|
Light Poster
|
|
| 18Mar2010,11:36 | #2 |
|
The constructor is never inherited by the derived class, so it doesnt matters wherever u write the constructor.
|
|
Newbie Member
|
|
| 18Mar2010,13:19 | #3 |
|
Light Poster
|
|
| 18Mar2010,14:17 | #4 |
|
well in this case, a compiler error will be thrown. Because u r trying to create a class object which is global to the code whereas the constructor is protected in the class.
|
|
Mentor
|
![]() |
| 18Mar2010,14:56 | #5 |
|
If you're not deriving then don't use protected, because it only makes sense in the context of a derived class. Use private or public instead then your intent is clear. By using protected in a class that is not to be derived you are intentionally obfuscating the meaning of your code.
Public is visible to all, private is visible only to the class, and protected is visible to the class and its derivatives. So this is the same as a private constructor, which means only the class itself and its friends can create an object of that class. Code:
class some
{
int x;
protected: some() { x=90; }
};
void test16()
{
some wibble;
}
error C2248: 'some::some' : cannot access protected member declared in class 'some' |
|
Mentor
|
![]() |
| 18Mar2010,14:59 | #6 |
|
This can be fixed by making test16 a friend:
Code:
class some
{
int x;
protected:
some() { x=90; }
friend void test16();
};
void test16()
{
some wibble;
printf("%d\n",wibble.x);
}
|
|
Light Poster
|
|
| 18Mar2010,16:12 | #7 |
|
other method using inheritence
Code:
Class A
{
protected:
int a;
};
class B:public A
{
public:
int c;
};
int main()
{
B b;
return 0;
}
|


