The access specifier in an object-oriented language determines how a class restricts access to it's members.
0
votes
1answer
32 views
asp.net mvc 3 dependency injection ninject
I want to ask something about asp.net mvc 3 dependency injection ninject.
Here is my Interface,
public interface IRegistration<T>
{
bool Registration(T Entity);
}
This is ClsMembers ...
3
votes
3answers
263 views
Intruding privacy - How does the C++ standard handle it?
Consider the below code snippet.
The method Sayhi() is having public access in class Base.
Sayhi() has been overridden as a private method by the class Derived.
In this way, we can intrude into ...
0
votes
4answers
48 views
about understanding a java code segment from its design perspective
I am trying to understand a java-based open source project, which has a code segment like
protected SimpleBinaryModel(ExampleSet exampleSet, double threshold) {
super(exampleSet);
...
-1
votes
4answers
98 views
how to use namespaces in asp.net application?
How can I use "public variables" in a same or a different namespace but in a same application?
for example:
1st namespace in a BookStore web application
namespace BookStore
{
public partial ...
-3
votes
4answers
63 views
Do not want to set private to default in Java [closed]
I have this in one class:
if (people.count < 10)
return false;
But count is undermarked with red saying
Change the visibility of count to default
count is in another class as private. But ...
0
votes
1answer
52 views
How can you provide this access specifier protection in python?
Here is the scenario I am currently dealing with.
There is a class called Service. Basically, only a single object of this can be created by a node. Once this object is created it is passed from one ...
0
votes
1answer
49 views
Public const variable or private with a get function, which is preferable?
So I have a variable I often have to call outside the class, I was told that I should do this:
class Foo{
public:
//stuff
Type getVariable();
private:
Type Variable;
...
0
votes
3answers
74 views
Why is Java's “protected” less protected than default? [closed]
In Java, we have four access specifiers: public, protected, package-private (default), and private. This is well known and not an issue for me.
My question is with regard to the naming of protected. ...
12
votes
1answer
128 views
`public` access qualifier and `const`ness. `-Wuninitialized`
class Foo
{
public:
const int x;
};
class Bar
{
private:
const int x;
};
Output:
test.cpp:10:13: warning: non-static const member ‘const int Bar::x’ in class without a ...
0
votes
1answer
39 views
In java protected membes access from diff package
In Java, how can I access protected members in a different package?
package p1
class base
protected int x
package p2
import p1.*
class derived extends base
int x
...
0
votes
2answers
92 views
accessing all the private members of a class c++
I have created few class as below (Since I can not put my real class Here I have written few as just example )
class One {
private :
char *link;
int count
}
...
0
votes
0answers
70 views
MS Access, read barcode on tablet
I would like to be able to read barcodes into an Access database using the built in camera on a windows 8 tablet. Anyone have any ideas? I'm guessing I'll have to use some barcode SDK to store a file, ...
1
vote
6answers
276 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 ...
2
votes
3answers
213 views
Make java methods visible to only specific classes
I have a manager class that is responsible for managing Objects of a certain kind. To do so it needs to manipulate these Objects, but these Objects have no relation to the manager whatsoever, so ...
3
votes
3answers
1k views
Inconsistent accessibility: base class is less accessible than class
So I have an abstract base class in a DLL and child classes of that class. I want the childs to be public, but the base to be private so that it cannot be accessed outside of the dll.
How do I do ...
0
votes
2answers
126 views
Why can't interface members be non-public? [duplicate]
Possible Duplicate:
Non Public Members for C# Interfaces
Suppose I have
internal interface IInterface
{
int MyProperty { get; set; }
}
public class MyClass : IInterface
{
...
0
votes
3answers
263 views
Why == overloading can access private members of argument [duplicate]
Possible Duplicate:
why private value of the obj can be changed by class instance?
Consider the following (partial) code:
class Group {
private:
int id;
public:
void ...
5
votes
1answer
362 views
Confusion regarding access specifiers in Java and C#
I was comparing access modifiers in Java and C#. I wanted to find an alternative of C#'s protected internal in Java. But I noticed that protected modifier is different in both the languages (C# and ...
10
votes
1answer
256 views
Why is it legal to inappropriately access privates in an explicit instantiation?
Why on earth would this be allowed:
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
...
2
votes
2answers
71 views
protected access type [duplicate]
Possible Duplicate:
In Java, what's the difference between public, default, protected, and private?
Why can't a subclass in one package access the protected member of it's superclass ...
0
votes
4answers
601 views
Why access specifiers can't be used for variables declared inside method in a Java Class?
Why we can't use access specifiers for variables declared inside method in a Java Class?
3
votes
1answer
176 views
Meaning of “Cannot reduce the visibility of the inherited method” with an interface
I have two files:
public interface PrintService {
void print(PrintDetails details);
class PrintDetails {
private String printTemplate;
}
public interface Task {
String ...
2
votes
3answers
336 views
c++ like protected in java [duplicate]
Possible Duplicate:
How to make data member accessible to class and subclass only
In java,
protected members can be accessed from within the class, its subclasses and from all the classes ...
1
vote
1answer
102 views
Fine grained access specifiers c++
I have the following class :-
class A {
public:
// some stuff that everyone should see
protected:
// some stuff that derived classes should see
private:
// some stuff that only I ...
0
votes
2answers
160 views
C#: Why are accessibility modifiers for members optional (rather than required)?
I've read this very well written blog post by Eric Lippert, but it doesn't explain the specific case of accessibility modifiers.
Conventional stackoverflow wisdom says to always specify "private" ...
4
votes
3answers
151 views
When should you restrict accessibility to a virtual function in a derived class?
Consider the following code:
class Base
{
public:
virtual void Foo() {}
};
class Derived : public Base
{
private:
void Foo() {}
};
void func()
{
Base* a = new Derived;
a->Foo(); ...
1
vote
3answers
203 views
Why the member function can still be accessed even if it is declared as “private”? [duplicate]
Possible Duplicate:
Public virtual function derived private in C++
class B
{
private:
int b;
public:
B(int i);
virtual void show()
{
...
0
votes
2answers
123 views
How to make private property accessible in MVC3
I'm using Mvc3 and NHibernate
I have a class called Activation code like following:
public virtual int LoginAccountId { get; set; }
protected virtual string ActivatedCode { get; set; }
protected ...
0
votes
4answers
226 views
Does the friend function have to be in the same file?
I am actually testing a file and I have a situation, where I need to access some of the protected members of the class from main.cpp. I tried to add, main() as friend, didn't work out and learned that ...
3
votes
3answers
1k views
Difference Between Private, Public, and Protected Methods
I'm learning ruby, and have come up to a point where I am confused. The book I am using is talking about Private, Public, and Protected Methods, but I am still a bit confused...What are the ...
3
votes
3answers
8k views
Difference between the default access specifier and protected access specifier in java
I was trying to learn java and when I went through access specifiers I had a doubt, what is the difference between the default one if none is specified and the protected access specifier?
4
votes
2answers
5k views
How to set private instance variable used within a method test?
Given a class with a couple of instance variables and some methods. Some instance variables are set accessible via attr_reader and attr_accessor. Thus the others are private.
Some of the private ...
5
votes
3answers
137 views
Are Ruby imported methods always private?
This is best explained with an example:
file1.rb:
def foo
puts 123
end
file2.rb:
class A
require 'file1'
end
A.new.foo
will give an error "': private method 'foo' called".
I can get ...
5
votes
1answer
879 views
Ruby class initialize (constructor) is private method or public method?
Is initialize method (constructor) private or public in ruby?
1
vote
3answers
163 views
When should we consider using private or protected?
Just wondering, when should we actually must use private or protected for some methods in the model?
Sometimes I can't not be bothered to group my methods in private nor protected. I just leave it as ...
1
vote
3answers
184 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 ...
0
votes
1answer
288 views
Ruby - inline declaration of private methods
Currently writing a class where methods that I am considering making private are spread throughout the code. Rather than adding a private line and copy-pasting everything below it, I want to do an ...
2
votes
1answer
80 views
Top level methods: Why they become private instance methods in Object? Why not public?
What is the reasoning behind making top level methods in Ruby private instance methods of Object? If they were somehow made public how would that change things?
1
vote
2answers
235 views
private and protected methods in Ruby
The following code works:
class MyClass
def method_a
method_b
end
private
def method_b
puts "Hello!"
end
end
m = MyClass.new
m.method_a
Changing the call to method_b to ...
2
votes
9answers
2k 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) {
...
0
votes
1answer
59 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
304 views
How do you designate private or protected attributes in Ruby/Rails?
How do you designate private or protected attributes in Ruby/Rails?
Are all DB fields automatically attributes, and don't need to be defined in the Model?
Any recommended tutorials?
Working in ...
0
votes
1answer
250 views
Singleton patterns, private methods and singleton module
I am fighting with singleton patterns in Ruby.
I know that singleton implements a single instance of an object but I don't quite understand if we can replicate it without the singleton module.
...
3
votes
3answers
135 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
...
4
votes
2answers
177 views
What actually occurs when stating “private”/“protected” in Ruby?
What is actually occurring when private/protected is stated within a Ruby class definition? They are not keywords, so that implies they must be method calls, but I cannot find where they are defined. ...
1
vote
3answers
191 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 ...
4
votes
3answers
148 views
How is the “public/protected/private” method implemented, and how can I emulate it?
In ruby, you can do this:
class Thing
public
def f1
puts "f1"
end
private
def f2
puts "f2"
end
public
def f3
puts "f3"
end
private
def f4
puts "f4"
end
end
...
2
votes
4answers
158 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 ...
1
vote
2answers
4k 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
...
6
votes
2answers
1k 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 ...




