473,411 Members | 1,937 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,411 software developers and data experts.

private within this context, the mind of man is surely not this twisted ?

class a
{
public:
int x;
private:
int y;
}

class b : public a
{
public:
void b::somemethod()
}

void b::somemethod()
{
y = 20; // <- compiler error, what? no, the mind of man is surely
not this twisted
}

I was expecting b to have everything a has and "somemethod"
WTF ?

Oct 11 '06 #1
10 14784
Greg wrote:
class a
{
public:
int x;
private:
int y;
}
;
>
class b : public a
{
public:
void b::somemethod()
;
}
;
>
void b::somemethod()
{
y = 20; // <- compiler error, what? no, the mind of man is surely
not this twisted
Huh? 'y' is private. It cannot be accessed *except* from a member
of 'a' or from its *friend*. 'b' is not a member and not a friend.
That's why 'y' is not accessible.
}

I was expecting b to have everything a has and "somemethod"
WTF ?
Read your favorite C++ book again, especially the part where
'private' is explained.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Oct 11 '06 #2

Greg wrote:
class a
{
public:
int x;
private:
int y;
}

class b : public a
{
public:
void b::somemethod()
}

void b::somemethod()
{
y = 20; // <- compiler error, what? no, the mind of man is surely
not this twisted
}

I was expecting b to have everything a has and "somemethod"
WTF ?

A derived class cannot access private members in the base class. The
derived class *can* access public and protected members in the base.
The only way for a derived class to access private members in the base
is for the base class to declare the derived class (or at least the
member function in question) a friend.

Oct 11 '06 #3
Bleargh, my C++ hateometer is at 8.6, that design is cac. So how do I
derive a class that can access the private members ? Or how can I make
the same overall design and avoid this dilema ?

Oct 11 '06 #4

Victor Bazarov wrote:
Huh? 'y' is private. It cannot be accessed *except* from a member
of 'a' or from its *friend*. 'b' is not a member and not a friend.
That's why 'y' is not accessible.

Read your favorite C++ book again, especially the part where
'private' is explained.
Yes, I misunderstand "private", I thought it meant private to the users
(scope) of the object but it obviously means more than that. Can you
declare b as a friend of a like this ?
class b : friend a
{
// unbleargh, maybe ?
};

Oct 11 '06 #5
Greg wrote:
Bleargh, my C++ hateometer is at 8.6, that design is cac.
You truly don't know C++ very well if you still score < 9.0.
So how do I
derive a class that can access the private members ?
Don't. That's what encapsulation means: You can change private members of
one class without wondering to yourself what other classes you just screwed
up - even if they are derived classes.

If you simply must do what you are doing, use 'protected'.

However, in general, one class should use the "tell, don't ask" when using
another class - eeeven a base class. The client class should not ask the
servant class what its 'y' value is. It should tell the servant class what
high-level operation it should do. That way, the servant class can use 'y'
the way it likes, and 'y' has a known and narrow scope. Eeeeeeeven if the
servant class is also a base class.

--
Phlip
http://www.greencheese.us/ZeekLand <-- NOT a blog!!!
Oct 11 '06 #6
Greg wrote:
Bleargh, my C++ hateometer is at 8.6, that design is cac. So how do I
derive a class that can access the private members ? Or how can I make
the same overall design and avoid this dilema ?
Make those members of the base class that should be visible to derived
classes protected instead of private. They will still be inaccessible from
classes outside the hierarchy.
Best

Kai-Uwe Bux
Oct 11 '06 #7
"Greg" <im*****@hotmail.co.ukwrote in message
news:11**********************@i42g2000cwa.googlegr oups.com...
>
Victor Bazarov wrote:
Huh? 'y' is private. It cannot be accessed *except* from a member
of 'a' or from its *friend*. 'b' is not a member and not a friend.
That's why 'y' is not accessible.

Read your favorite C++ book again, especially the part where
'private' is explained.

Yes, I misunderstand "private", I thought it meant private to the users
(scope) of the object but it obviously means more than that. Can you
declare b as a friend of a like this ?
class b : friend a
{
No. There's not much point in making something private if there's an easy way to get around it. Only
a can choose who its friends are. Private means _private_.
// unbleargh, maybe ?
};
DW
Oct 11 '06 #8
Kai-Uwe Bux wrote:.
Make those members of the base class that should be visible to derived
classes protected instead of private. They will still be inaccessible from
classes outside the hierarchy.
Can a derived class use this?

public:
using I_formerly_was_protected;

If so, privacy is even less of an illusion of encapsulation...

--
Phlip
http://www.greencheese.us/ZeekLand <-- NOT a blog!!!
Oct 11 '06 #9

Greg wrote:
Bleargh, my C++ hateometer is at 8.6, that design is cac. So how do I
derive a class that can access the private members ? Or how can I make
the same overall design and avoid this dilema ?
If it's private, then its up to the base class to give you access to
it. Why is it that you beleive that you can't access it?

class a
{
int y;
public:
void setY(int n) { y = n; }
int getY() const { return y; }
}; <- semicolon! its a class declaration

class b : public a
{
public:
void b::somemethod() const;
};

void b::somemethod()
{
setY(20);
}

Now consider a situation where you need to only allow y to be between 0
and 20, as an example. Why should the programmer be forced to have
those classes NOT responsible for the variable check that?
The point is that if y is protected, then class b must also impose the
0 <= y <= 20 verification. Thats would be a dumb strategy. The fact
that y above is private is helping the creator of the class determine
the rules of the design. Can you see that even an instance of class b
can now set/get y?

int main()
{
b bill;
bill.setY(11);
}

Oct 11 '06 #10
Phlip wrote:
Kai-Uwe Bux wrote:.
>Make those members of the base class that should be visible to derived
classes protected instead of private. They will still be inaccessible
from classes outside the hierarchy.

Can a derived class use this?

public:
using I_formerly_was_protected;
Yes.

If so, privacy is even less of an illusion of encapsulation...
So?
Best

Kai-Uwe Bux

Oct 11 '06 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Daniel Bickett | last post by:
Hello, I am writing an application using two event-driven libraries: wxPython, and twisted. The first problem I encountered in the program is the confliction between the two all-consuming...
3
by: Leszek Tumm | last post by:
Hi. Can you help solve a problem with operator overloading ? in one file i have definition of my class and declarations of overloaded operators: class Complex { long double Re;
0
by: tbatwork828 | last post by:
If you were like me trying to figure out how to launch context sensitive help topic by the context id, here is the link: http://weblogs.asp.net/kencox/archive/2004/09/12/228349.aspx and if...
5
by: Nadav | last post by:
Hi, I am using FileStream's Async API: BeginRead/EndRead, upon completion callback execution I use the read data and call EndRead, Taking that in mind, I Wonder... does calling EndRead will cause...
8
by: Dennis C. Drumm | last post by:
Is there a way to modify the standard context menu shown when someone right clicks in a windows text box and that would work for all open windows applications? The standard context menu for...
2
by: Jimbo | last post by:
Hey Have a real problem here. I have a page that consists of a lot of div tags and everything on the page is made in controls. In one of the controls we call a method in another class that...
2
by: ma740988 | last post by:
I might be a little off topic but the experience level here is enough to give me solid guidance. So here's the code: #ifndef FOO_TEST_H #define FOO_TEST_H #include <string> #include <deque>...
3
by: John Salmon | last post by:
g++ complains about illegal access to a private member when the following is compiled with a private copy constructor for the class C. When the copy constructor is public, the program runs and...
1
by: DaTurk | last post by:
Hi, if I declare a delegate as private, within a namespace, what's the scope?
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.