473,386 Members | 1,943 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,386 software developers and data experts.

Accessing a protected member of a member of type BaseClass????

I find the surprising. If I derive Rectangle from Point, I can access the
members of Point inherited by Rectangle _IF_ they are actually members of a
Rectangle. If I have a member of type Point in Rectangle, the compiler
tells me Point::x is protected. I would have expected Rectangle to see the
protected members of any Point. Compiling the following code give me this
error:
g++ -o rectangle main.cc
main.cc: In member function `size_t Rectangle::dx()':
main.cc:22: error: `size_t Point::y' is protected
main.cc:32: error: within this context

#include <iostream>
#include <cstddef> //size_t

class Point {

public:
Point(const size_t& x_=0,
const size_t& y_=0)
: x(x_),
y(y_)
{}

Point& operator+(const Point& p)
{
this->x += p.x;
this->y += p.y;
return *this;
}

protected:
size_t x;
size_t y; //line 22
};

class Rectangle : public Point {
public:
Rectangle(const Point& xy, const Point& dxdy_)
: Point(xy),
dxdy(dxdy_)
{}
size_t X() const { return this->x; }
size_t dx() const { return this->dxdy.y; } //line 32
protected:
Point dxdy;
};
int main(){

}

ISO/IEC 14882 says this:

11.2 Accessibility of base classes and base class members

[class.access.base]

"If a class is declared to be a base class (clause 10) for another class
using the public access specifier, the public members of the base class are
accessible as public members of the derived class and protected members of
the base class are accessible as protected members of the derived class."

The way I read that, I should be able to access Rectangle::dxdy.y from
within Rectangle. Am I missing something, or is g++ wrong?
--
STH
Hatton's Law: "There is only One inviolable Law"
KDevelop: http://www.kdevelop.org SuSE: http://www.suse.com
Mozilla: http://www.mozilla.org
Jul 22 '05 #1
2 2256
Steven T. Hatton wrote:
I find the surprising. If I derive Rectangle from Point, I can access the

....

This looks like an answer. I'm not accessing Point::dxdy through a pointer
to Rectangle. I would need to get really brutal with a cast to do so, and
I'm not sure that would even work(correctly/reliably).

http://publib.boulder.ibm.com/infoce...ns.cplr162.htm

A protected nonstatic base class member can be accessed by members and
friends of any classes derived from that base class by using one of the
following:

* A pointer to a directly or indirectly derived class
* A reference to a directly or indirectly derived class
* An object of a directly or indirectly derived class

If a class is derived privately from a base class, all protected base class
members become private members of the derived class.

If you reference a protected nonstatic member x of a base class A in a
friend or a member function of a derived class B, you must access x through
a pointer to, reference to, or object of a class derived from A. However,
if you are accessing x to create a pointer to member, you must qualify x
with a nested name specifier that names the derived class B. The following
example demonstrates this:

class A {
public:
protected:
int i;
};
class B : public A {
friend void f(A*, B*);
void g(A*);
};

void f(A* pa, B* pb) {
// pa->i = 1;
pb->i = 2;

// int A::* point_i = &A::i;
int A::* point_i2 = &B::i;
}

void B::g(A* pa) {
// pa->i = 1;
i = 2;

// int A::* point_i = &A::i;
int A::* point_i2 = &B::i;
}

void h(A* pa, B* pb) {
// pa->i = 1;
// pb->i = 2;
}

int main() { }

Class A contains one protected data member, an integer i. Because B derives
from A, the members of B have access to the protected member of A. Function
f() is a friend of class B:

* The compiler would not allow pa->i = 1 because pa is not a pointer to
the derived class B.
* The compiler would not allow int A::* point_i = &A::i because i has
not been qualified with the name of the derived class B.

Function g() is a member function of class B. The previous list of remarks
about which statements the compiler would and would not allow apply for g()
except for the following:

* The compiler allows i = 2 because it is equivalent to this->i = 2.

Function h() cannot access any of the protected members of A because h() is
neither a friend or a member of a derived class of A.
--
STH
Hatton's Law: "There is only One inviolable Law"
KDevelop: http://www.kdevelop.org SuSE: http://www.suse.com
Mozilla: http://www.mozilla.org
Jul 22 '05 #2
On Mon, 16 Aug 2004 07:15:24 -0400, "Steven T. Hatton"
<su******@setidava.kushan.aa> wrote:
I find the surprising. If I derive Rectangle from Point, I can access the
members of Point inherited by Rectangle _IF_ they are actually members of a
Rectangle. If I have a member of type Point in Rectangle, the compiler
tells me Point::x is protected.
Yes, that's correct behaviour, and is required to maintain
encapsulation.
I would have expected Rectangle to see the
protected members of any Point.
But that would allow it to break instances of completely unrelated
classes that just happen to also derive from Point. For example,
perhaps Trapezium derives from point; we don't want Rectangle to be
able to modify the Point subobject of a Trapezium.
ISO/IEC 14882 says this:

11.2 Accessibility of base classes and base class members

[class.access.base]

"If a class is declared to be a base class (clause 10) for another class
using the public access specifier, the public members of the base class are
accessible as public members of the derived class and protected members of
the base class are accessible as protected members of the derived class."

The way I read that, I should be able to access Rectangle::dxdy.y from
within Rectangle. Am I missing something, or is g++ wrong?


See 11.5/1

Tom
Jul 22 '05 #3

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

Similar topics

5
by: Sandeep | last post by:
Hi, In the following code, I wonder how a private member of the class is being accessed. The code compiles well in Visual Studio 6.0. class Sample { private: int x; public:
1
by: Nick | last post by:
Why is it that in the example below I get an error saying that I "cannot access protected member 'i' via a qualifier of type 'Base'; the qualifier must be of type 'Derived'"?? but when i make m_i...
4
by: hweekuan | last post by:
Hi, I got an error with gnu C++ but not with intel C++ (icc). The distilled code is given below, a variable "T" is stored as a const T& in the base class and when the derived class try to access...
5
by: MrJim | last post by:
How should variables be declared and referenced in both the base and derived form so they can be accessed?
2
by: Jessica | last post by:
I have a base class and a derived class, but I am getting errors when I try to access functions of the derived class. Simplified version of my code is as follows: //////////////// // test2.hh...
4
by: Joseph Paterson | last post by:
Hi all, I'm having some trouble with the following code (simplified to show the problem) class Counter { protected: int m_counter; }
13
by: Tom Baxter | last post by:
Hi everyone, Has anyone looked at section 18.1.1 of the C# spec? It indicates 'new' and 'protected' are valid modifiers on struct declarations. First, how can 'protected' be valid on a struct,...
12
by: Robert Fuchs | last post by:
Hello, This example: public class BaseC { public int x; public void Invoke() {} } public class DerivedC : BaseC
6
by: Bhawna | last post by:
I am into c++ code maintenance for last 3-4 years but recently I am put into design phase of a new project. Being a small comapany I dont have enough guidance from seniors. Currently I am into a...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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?
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...

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.