Tagged Questions
0
votes
1answer
48 views
Private/Protected variable “error: within this context”
I have a class based off of the SFML gamefromscratch.com tutorials, called "VisibleGameObject" Within this class, is a private variable "_sprite", as well as a "getSprite()" function that I tried as ...
0
votes
1answer
45 views
Guice submodules prevent inheriting bindings
I would like to accomplish the following without introducing annotations or using string key names, is it possible using Guice? Also, introducing a third private module for MyService and its ...
0
votes
0answers
37 views
Handling private/virtual inheritance in is_base_of
I'm trying to devise a non-intrinsic way of writing a SIMPLE is_base_of type trait.
This is what I got so far (thanks to @Xeo for the general technique):
template<typename Base, typename ...
0
votes
4answers
72 views
C ++ Child class cannot inherit private member from Father class?
I am using Win8 VC++2012.
The code above is to show that child class B under NO circumstances can access the A::a. Neither can I change the access attribute of A::a but A::b and A::c.
So A::c is not ...
0
votes
2answers
76 views
C++ Why I can invoke private virtual function of base class from a drived class?
Herb Sutter's famous article Virtuality, states the following:
Guideline #2: Prefer to make virtual functions private.
That's easy. This lets the derived classes override the function to
...
1
vote
3answers
131 views
Allowing access to private members
This question is somewhat a continuation of this one I've posted.
What I was trying to do: my point was to allow access to private members of a base class A in a derived class B, with the following ...
2
votes
4answers
212 views
Inherit private members from base class
This question has already been asked here -- more than twice, actually --, but I myself haven't been able to derive a solution to my problem from the posts.
What I have is a library, with, among ...
5
votes
1answer
166 views
Private and default constructor in C++11 and gcc
Code:
struct A
{
private:
A() = default; // Version 1.
};
struct B : public A
{};
struct C
{
private:
C() {}; // Version 2.
};
struct D : public C
{};
int main()
{
B b; // ...
4
votes
4answers
494 views
C++ why use public, private or protected inheritence?
Well there is enough information about this subject. For example this thread was very clear to me: Difference between private, public and protected inheritance in C++
Except one point; Why is it ...
0
votes
5answers
76 views
Private methods in Inheritance
Here's an interesting code snippet:
public class Superclass {
public static void main (String[] args){
Superclass obj = new Subclass();
obj.doSomething(); #prints "from ...
4
votes
5answers
829 views
C++ Do Sub-Classes Really Inherit Private Member Variables?
Alright, I have an interesting question/problem here. This will kind of require me to explain what I know of inheritance so far so bare with me, I'm still learning.
Basically as far as I know, when ...
1
vote
6answers
291 views
Are the private members of superClass inherited by a subClass… Java?
I have gone through this:
Does subclasses inherit private fields?
But I'm still confused...
I'm talking about inheriting only and not accessing. I know that they aren't visible out side class.
But ...
0
votes
4answers
137 views
Change private string from another class
I'm wondering as to why my private variable 'name' within my Events class won't change when I access the property from my Leisure class which inherits from Events. I need Leisure to use the properties ...
1
vote
2answers
110 views
Inheritance and private instance variables
I'm having trouble figuring out how to access a private instance variable of the super class.
I'm writing an equals method in the Dog class that compares to see if the name and breeds are the same, ...
-1
votes
4answers
169 views
In Java, Whether the subclass can get the private fields and methods from its superclass? [duplicate]
Possible Duplicate:
Are private fields inherited by the subclass?
It's no doubt that the subclass can't access the private fields directly.
But if the private fields exists?
Actually i can ...
1
vote
3answers
69 views
How can private inheritance from a visitor interface allow a visitable object to access visit private visit implementations?
The following code shows a class which privately inherits from an interface having its private functions accessed without granting the calling object friendship. I am baffled by this but can't really ...
2
votes
2answers
90 views
Private variables and inherited constructors
I am new to Java, so i might have missed something here - i looked around in other threads, but i didn't find anything that quite resemble my question. i know that private variables are not inherited ...
1
vote
2answers
130 views
Should private inheritance be used when there are no virtuals?
In C++, if I have a class Base which is a private base class of Derived but Base has no virtual functions, would it be cleaner to instead replace having inheritance with encapsulation in class ...
2
votes
3answers
869 views
C# private (hidden) base class
It is possible to make a C# base class accessible only within the library assembly it's compiled into, while making other subclasses that inherit from it public?
For example:
using System.IO;
class ...
4
votes
4answers
286 views
Does a friend see base classes?
Given the sample code:
class Base {
public:
bool pub;
protected:
bool prot;
};
class Derived : private Base {
friend class MyFriend;
};
class MyFriend {
Derived _derived;
void test() {
...
0
votes
1answer
54 views
Accessing Private Int in a Subclass
Superclass source code
public class Date {
private int month;
private int day;
private int year;
public Date() {
setMonth(1);
**day = 1;**
setYear(1900);
}
public Date(int month, int day, ...
0
votes
1answer
118 views
How to access private attributes inside an inherited method in JavaScript
I am trying to call a inherited method that must access private attributes from current object. But it only access the public ones, what is wrong?
My test code should alert both vars:
...
5
votes
1answer
1k views
Objective-C: access private propertys in a inherited class
I'm trying to access private properties on a inherited class. Is that possible with that naming convention apple gave me?
Header:
#import <Foundation/Foundation.h>
@interface FooBar : ...
0
votes
5answers
2k views
access private members in inheritance
I have a class A, which have a field val declared as private.
I want to declare a class B, that inherit from A and have an access to val.
Is there a way to do it on C++?
I want to do it because I ...
-1
votes
1answer
181 views
what relationship of protected or private inheritance in C++ ? [duplicate]
Possible Duplicate:
Difference between private, public and protected inheritance in C++
In C++, protected or private inheritance, as opposed to public inheritance, models which of the ...
10
votes
2answers
222 views
Inaccessible type due to private inheritance
g++ is denying me access to a type, just because it happens to be a private grand-father. Does this make sense?
struct A {};
struct B : private A {};
struct C : B {
void foo(A const& a) {}
};
...
2
votes
1answer
540 views
QT pimpl inheritance from QObject
While going through Qt code I had this basic question on the pimpl implementation.
As an example taking QWidget implementation.
QWidget ---inherits---> QObject
| ...
3
votes
4answers
2k views
C++: overriding public\private inheritance
If B inherits from A using public, can B override one of the functions and force it to be private?
class A
{
public:
virtual double my_func1(int i);
virtual double my_func2(int i);
}
class B ...
0
votes
3answers
1k views
PHP: How to call private values of parent construct in child construct?
I want to be able to set a private attribute's value in the parent constructor, and call the value in a child's constructor or method.
For example:
<?php
abstract class MainClass
{
private ...
0
votes
2answers
304 views
Function templates and Private Inheritance
I recently ran into a problem when using a private inheritance scheme in which the base class defined a template method and the (privately) derived class made that method public via a using ...
4
votes
2answers
213 views
Besides accessibility, what else access-specifiers effects?
Besides the normal explenation of being visible or not to derived classes, is their any other difference?
If you make it more visible, is it taking more or less memory, does it slow thing down or...?
...
0
votes
2answers
154 views
PHP: change attribute from inherited class
maybe some of you use jpgraph to generate some charts. I want to change the private attribute ($errwidth) from an jpgraph-class ( ErrorPlot ). In most cases jpgraph provides an function to set all ...
0
votes
6answers
117 views
What is the value of private members here?
If I have two classes A and B, such that B inehrits A. In other words, A is the base class, and B is the derived class.
Now, suppose that class A has private members. Since class B inherited class A, ...
34
votes
11answers
17k views
Does subclasses inherit private fields?
This is an interview question.
Does subclasses inherit private
fields?
I answered "No", because we can't access them using "normal OOP way". But interviewer thinks, that their inherits, ...
4
votes
7answers
3k views
Public and private inheritance in C++
As we know from the literature for the public inheritance the object of child class (sub-class) also can be considered as the object of base class (super-class). Why the object of the sub-class can’t ...
0
votes
2answers
353 views
C++ inheritance public and private?
Is it possible to inherit both or all parts of a class (other than private) in C++?
class A {
}
clas B : ...? { }
19
votes
12answers
7k views
Are private members inherited in C#?
Just seen one tutorial saying that:
Class Dog
{
private string Name;
}
Class SuperDog:Dog
{
private string Mood;
}
Then there was an UML displaying that SuperDog will inherit Name as well. I ...
3
votes
6answers
576 views
Public and private access for the same member functions
I have a class (class A) that is designed to be inherited by other classes written by other people.
I also have another class (class B), that also inherits from A.
B has to access some A's member ...
22
votes
7answers
9k views
Why do we actually need Private or Protected inheritance in C++?
In C++, I can't think of a case in which I would like to inherit private/protected from a
base class:
class Base;
class Derived1 : private Base;
class Derived2 : protected Base;
Is it really ...
12
votes
3answers
3k views
Python inheritance - how to disable a function
In C++ you can disable a function in parent's class by declaring it as private in the child class. How can this be done in Python? I.E. How can I hide parent's function from child's public interface?
3
votes
4answers
402 views
Inheriting from protected classes in C+++
Suppose I have the following declaration:
class Over1
{
protected:
class Under1
{
};
};
I know that I could do the following:
class Over2 : public Over1
{
protected:
...