Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
9answers
909 views

C++ Is private really private?

I was trying out the validity of private access specifier in C++. Here goes: Interface: // class_A.h class A { public: void printX(); private: void actualPrintX(); int x; }; ...
15
votes
8answers
1k views

Why would a virtual function be private?

I just spotted this in some code: class Foo { [...] private: virtual void Bar() = 0; [...] } Does this have any purpose? (I am trying to port some code from VS to G++, and this caught my ...
11
votes
3answers
1k views

Private virtual method in C++

What is the advantage of making a private method virtual in C++? I have noticed this in an open source C++ project: class HTMLDocument : public Document, public CachedResourceClient { private: ...
10
votes
5answers
338 views

Why make private inner class member public in Java?

What is the reason of declaring a member of a private inner class public in Java if it still can't be accessed outside of containing class? Or can it? public class DataStructure { // ... ...
8
votes
3answers
494 views

Why can I access private variables in the copy constructor?

I have learned that I can never access a private variable, only with a get-function in the class. But then why can I access it in the copy constructor? Example: Field::Field(const Field& f) { ...
7
votes
6answers
3k views

Which is the default access specifier in Java?

So I just started reading a Java book and wondered; which access specifier is the default one if none is specified?
7
votes
5answers
2k views

What is the difference between access specifiers and access modifiers?

In Java, are access specifiers and access modifiers the same thing?
6
votes
6answers
596 views

What is the difference between access specifier protected and internal protected in C#

What is the difference between access specifier protected and internal protected in C# ?
5
votes
1answer
130 views

Is size of the object affected by type of access-specifier and type of inheritance?

While answering one of the question, there was a discussion thread below my answer. Which suggests that depending on the access specifier (or may be the type of inheritance) private/protected/public ...
5
votes
5answers
224 views

C++ advice from Code Complete on encapsulation?

In the section on "Good Encapsulation" in Code Complete, it is recommended to hide private implementation details. An example is given in C++. The idea is basically to completely separate the ...
5
votes
5answers
380 views

Why is it allowed to call derived class' private virtual method via pointer of base class?

# include <iostream> using namespace std; class A { public: virtual void f() { cout << "A::f()" << endl; } }; class B:public A { private: virtual ...
5
votes
5answers
357 views

C++ Class Access Specifier Verbosity

A "traditional" C++ class (just some random declarations) might resemble the following: class Foo { public: Foo(); explicit Foo(const std::string&); ~Foo(); enum FooState { Idle, ...
4
votes
2answers
169 views

Can I access a base classes protected members from a static function in a derived class?

I have a program where I need to make a base class which is shared between a dll and some application code. Then I have two different derived classes, one in the dll one in the main application. Each ...
4
votes
7answers
4k views

Interfaces in Java: cannot make implemented methods protected or private

I know that an interface must be public. However, I don't want that. I want my implemented methods to only be accessible from their own package, so I want my implemented methods to be protected. ...
3
votes
3answers
100 views

Disallow functionality automatically provided by C++ compilers

Scott Meyers in his book "Effective C++" says, To disallow functionality automatically provided by compilers, declare the corresponding member functions private and give no ...
2
votes
9answers
97 views

How to Access package private Class from a Class in some other package?

I have following classses Hello.java package speak.hello; import java.util.Map; import speak.hi.CustomMap; import speak.hi.Hi; public class Hello { private Hi hi; Hello(Hi hi) { ...
2
votes
4answers
115 views

Is it considered good practice to change the protection level of a method?

In other words if I have a class class A { public: A() { .. } virtual void somemethod() { .. } }; is it ok to write class B : public A { public: B() { .. } protected: virtual void ...
2
votes
2answers
82 views

Does a private type-specifier prevent objects from 'understanding' the specifier?

I was having a problem getting a function to accept an enum as a return-type. In the code below there's an enum: Status{ DEAD, WOUNDED, HEALTHY } and a function with Status as a return type: ...
2
votes
2answers
543 views

Java tutorial says I can have a package-private interface, but I can't

In the Java tutorial "Defining an Interface", it says If you do not specify that the interface is public, your interface will be accessible only to classes defined in the same package as the ...
2
votes
1answer
191 views

Getting around access specifiers with C++0x decltype

Consider the following code: class A { private: class B {}; public: B f(); }; A a; A::B g() { return a.f(); } The compiler rejects this - g cannot return A::B because A::B is private. ...
2
votes
5answers
273 views

Access-specifiers are not foolproof?

If I've a class like this, class Sample { private: int X; }; Then we cannot access X from outside, so this is illegal, Sample s; s.X = 10; // error - private access But we can make ...
2
votes
3answers
168 views

Protected data members and data functions

when i declare a protected data member in a class that means its not accesible to the outer world but the derived class. My question is will it be accesible to a class that is derived from the ...
2
votes
5answers
280 views

class member access specifiers and binary code

I understand what the typical access specifiers are, and what they mean. 'public' members are accessible anywhere, 'private' members are accessible only by the same class and friends, etc. What I'm ...
2
votes
6answers
2k views

How to prevent derived class from making a private/protected virtual function public?

There are good reasons for constructing the base class interface with all virtual functions as private or protected (see this). But then how does one prevent the derived classes (which may be in the ...
2
votes
6answers
231 views
1
vote
3answers
63 views

C++ Multiple inheritence, base class visibility and the dreaded diamond. Re-exposing ancestor base class as public?

I need to abstract away a lot of the interface from a base class by making it protected, but I also need public access to a simple ancestor class Object. Can I negotiate the dreaded diamond without ...
1
vote
3answers
83 views

Class member privacy and headers in C++

So I'm making a class to define a character in D&D. The way I thought setting up the class was that public members are defined in the header and private in the .cpp so they're not revealed to the ...
1
vote
3answers
82 views

how to know the access specifier used by the compiler in c

Is there a way to know the access specifier used by the compiler in c. For Example- In the case of register variables, it all depends on the compiler to decide whether a variable's access ...
1
vote
4answers
312 views

C++ access specifiers

I just want to make sure I got the idea of public and private right. Regarding the private access specifier, does it mean: Only accessed inside the class Cannot be accessed from the object of the ...
1
vote
2answers
333 views

Rationale for difference in “default” access-specifier for a base class

I know that there're few differences between struct and class in C++. I also understand the reason(s) for few of the difference(s). Like this one, Members of struct are public by default; members of ...
1
vote
2answers
195 views

What's the advantage of making methods public in an interface, but protected in the implementation?

In my C++ application I have an interface that looks like this: class ICalculator { public: virtual double calculateValue(double d) = 0; }; I have implementations of this interface ...
1
vote
4answers
179 views

C++ access specifiers, too few?

As far as i know, there're only 3 access-specifiers in C++: private, public, protected With these 3 access-specifiers, how can i make a method usable to the classes in the project but unusable to the ...
1
vote
2answers
191 views

Which C++ compilers use the access specifier in name mangling?

I know MSVC does, and GCC doesn't? What about the others?
1
vote
6answers
1k views

C++: Why does my DerivedClass's constructor not have access to the BaseClass's protected field?

I have a constructor attempting to initialize a field in a base class. The compiler complains. The field is protected, so derived classes should have access. //The base class: class BaseClass { ...
1
vote
3answers
505 views

Accessing Sub functions /procedures from DPR or other function / procedure in Delphi

As much I know - Subroutines are with Private access mode to its parent unction / procedure, right? Is there any way to access them from "outer-world" - dpr or other function / procedure in unit? ...
1
vote
7answers
793 views

Is it possible to hide or lower access to Inherited Methods in Java?

I have a class structure where I would like some methods in a base class to be accessible from classes derived directly from the base class, but not classes derived from derived classes. According to ...
1
vote
2answers
1k views

Access private member variable of the class using its object (instance)

Here is a VB.NET code snippet Public Class OOPDemo Private _strtString as String Public Function Func(obj as OOPDemo) as boolean obj._strString = "I can set value to private member ...
0
votes
1answer
41 views

Difficulty in retaining the default visibility of a method which needs to be accessed by the different package

I am developing a MineSweeper. In that I have 3 packages. 1.frontEnd 2.backEnd 3.mineSweeperControl. mineSweeperControl contains an class ActionSplicer which implements ActionListener.In frontEnd I ...
0
votes
2answers
142 views

Error: expected a declaration

So far all I have in my DecisionTree.h file is namespace DecisionTree { public static double Entropy(int pos, int neg); } and Visual Studio is already highlighting the public and saying ...
0
votes
3answers
356 views

My C# Private Class is accessible anywhere inside the DLL, then whats the use of internal?

I have ClassLibrary project in C# and all my 'private classes' (under different namespace) are accessible to each other inside the same assembly (project). Class1.cs ---------------------------- ...
0
votes
1answer
67 views

How to layer specificity

Within the posting at http://www.smashingmagazine.com/2009/08/17/taming-advanced-css-selectors/ in the context of defining the rules of 'specificity' is stated: For example, if you want to change ...
-1
votes
3answers
115 views

How come protected method is accessible in unrelated class?

I have below code written with Eclipse ide: public interface X { final public static int SOME_CONST = 0; } public class Handle implements X { protected void methodHandle () { } //... } public ...
-1
votes
1answer
67 views

private javax.swing.JTextField3; error

I greatly thanks those that reply to my question "main method not found error", after correcting all the parenthesis and it seem the code is alright.On the IDE its still indicate the error below; ...