Tagged Questions
The access-modifiers tag has no wiki summary.
56
votes
22answers
17k views
Practical usings of “internal” keyword in C#
Would you explain, please, what are practical usings of "internal" keyword in C#? I know that "internal" modifier limits access to the current assembly. But when could I need it?
Thanks!
50
votes
9answers
2k views
Any reason to write the “private” keyword in C#?
As far as I know, private is the default everywhere in C# (meaning that if I don't write public, protected, internal, etc. it will be private by default). (Please correct me if I am wrong.)
So, ...
43
votes
7answers
12k views
What is the equivalent of Java's final in C#?
What is the equivalent of Java's final in C#?
EDIT: Sorry, I should have been clearer. I meant what is the equivalent when applied to a member variable - so it must be assigned once and only once.
32
votes
13answers
40k views
What is the difference between Public, Private, Protected, and Nothing?
All my college years I have been using public, and would like to know the difference between public, private, and protected? Also what does static do as opposed to having nothing?
23
votes
12answers
895 views
Are there any reasons to use private properties in C#?
I just realized that the C# property construct can also be used with a private access modifier:
private string Password { get; set; }
Although this is technically interesting, I can't imagine when ...
22
votes
3answers
560 views
Why can I access a derived private member function via a base class pointer to a derived object?
#include<iostream>
using namespace std;
class base
{
public:
virtual void add() {
cout << "hi";
}
};
class derived : public base
{
private:
void add() {
cout ...
13
votes
12answers
8k views
Why can't I have protected interface members?
What is the argument against declaring protected-access members on interfaces? This, for example, is invalid:
public interface IOrange
{
public OrangePeel Peel { get; }
protected OrangePips ...
11
votes
3answers
3k views
Internal vs. Private Access Modifiers
What is the difference between the internal and private access modifiers in C#?
11
votes
2answers
3k views
When would you use the “protected internal” access modifier?
As you may already know, the .NET Framework's protected internal access modifier works in a strange way: It doesn't mean the class is protected AND internal, it says the class is protected OR ...
10
votes
6answers
283 views
Have you ever seen design with reasonable usage of protected internal access modifier?
I haven't, but I don't say there isn't one.
All of the C# developers who read this probably do know what is protected internal and when to use it. My question is simple : did you actually ever use it ...
10
votes
4answers
604 views
Outside classes accessing package-private methods
Suppose I have a class in my package org.jake and it has a method with default access (no modifier). Then the method is visible inside the package only.
However, when someone receives the jar of my ...
10
votes
5answers
2k views
Difference between “strict private” and “protected” Access Modifiers in Delphi?
Hi i'm a really noob, but i learn programming and after structured programming with Pascal language, i'm beginning to learn about OOP with Delphi.
So, i don't really understand the difference between ...
10
votes
8answers
1k views
Why is internal protected not more restrictive than internal?
I'd like to create an internal auto-property:
internal bool IP { get; protected internal set; }
I thought it would be possible to make the setter protected or protected internal - but I always get ...
9
votes
3answers
412 views
Visual C# 2010 Express: Specify default access modifier for new classes?
Whenever I create new classes using Visual Studio 2010 Express C# it creates them with no access modifier. 9 times out of 10 I want my new classes to be public. How can I have visual studio create ...
9
votes
2answers
5k views
Access modifiers on interface members in C#
I am getting a compile error from the following property.
The error is:
"The modifier 'public' is not valid for this item"
public System.Collections.Specialized.StringDictionary ...
8
votes
4answers
355 views
Access a derived private member function from a base class pointer to a derived object [closed]
Possible Duplicate:
Why can i access a derived private member function via a base class pointer to a derived object?
#include <iostream>
using namespace std;
class B {
public:
...
8
votes
8answers
3k views
C# private, static, and readonly
I was reviewing some code for log4net and I came across this.
private static readonly ILog logger = LogManager.GetLogger(typeof(AdminClient));
I am wondering why would you need to have private ...
7
votes
6answers
135 views
Why C# does not support the intersection of Protected and Internal accesibility?
protected internal
The union of protected and internal accesibility (this is less restrictive than protected or internal alone)
The CLR has the concept of intersection of protected and internal ...
7
votes
3answers
338 views
Why can a public class not inherit from a less visible one? [closed]
Possible Duplicate:
C#: Why can't my public class extend an internal class?
I apologize if this question has been asked before. I've searched SO somewhat and wasn't able to find it.
...
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?
7
votes
11answers
344 views
Private variables/methods in anonymous class?
I have created an anonymous class in which I declare a few variables and methods. My java teacher tells me to make these private. I don't see how changing the modifier makes any difference since these ...
7
votes
3answers
783 views
OO: Why should constructors on abstract classes be protected, not public?
C# code: Resharper suggests changing the accessibility of a public constructor in an abstract class to protected, but it does not state the rationale behind this.
Can you shed some light?
7
votes
4answers
6k views
Why can't I access C# protected members except like this?
This code:
abstract class C
{
protected abstract void F(D d);
}
class D : C
{
protected override void F(D d) { }
void G(C c)
{
c.F(this);
}
}
Generates this error:
...
6
votes
4answers
109 views
Is the copy CTOR required even if never called?
consider the following:
class X {
public:
X(int i) { cout << "X(int i)" << endl; }
X(const X& x) { cout << "X(const X& x)" << endl; }
};
void main() {
X ...
6
votes
6answers
232 views
c#: public when debugging, private otherwise
Is there a nice way to make it so that functions are public when I am testing with NUnit, but private otherwise?
Not having to generate a lot of extraneous code would also be nice.
...
6
votes
4answers
248 views
Force the use of interface instead of concrete implementation in declaration (.NET)
In C++, you can do the following:
class base_class
{
public:
virtual void do_something() = 0;
};
class derived_class : public base_class
{
private:
virtual void do_something()
{
...
6
votes
3answers
780 views
Public and Internal members in an Internal class?
Ok, so this may be a bit of a silly question, and there's certainly the obvious answer, but I was curious if I've missed any subtleties here.
Is there any difference in terms of visibility/usability ...
6
votes
6answers
268 views
Help to understand the issue with protected method
I'm reading Sybex Complete Java 2 Certification Study Guide April 2005 (ISBN0782144195). This book is for java developers who wants to pass java certification.
After a chapter about access modifiers ...
6
votes
5answers
5k views
What are public, private and protected in object oriented programming?
What are public, private and protected in object oriented programming?
5
votes
4answers
311 views
C# Limit creation of class instance to within namespace
I have two objects, RoomManager and Room, there will be several Rooms and one RoomManager. I want the RoomManager to be the only one allowed to create a Room object. So I'm wondering if there is a ...
5
votes
3answers
1k views
Why can't my subclass access a protected variable of its superclass, when it's in a different package?
I have an abstract class, relation in package database.relation and a subclass of it, Join, in package database.operations. relation has a protected member named mStructure.
In Join:
public ...
5
votes
2answers
855 views
Serialize List<> of classes declared with internal modifier?
I'm trying to add XML serialization to a fairly trivial class structure in C#. Essentially, there's a single instance of a root class (call it AClass), which holds a List of several instances of some ...
5
votes
7answers
1k views
C# internal getter, protected setter with an internal class parameter
I was having the problem of wanting a property to have an internal getter and a protected setter, as described in this question, and I thought I solved that by doing the following:
public class ...
5
votes
5answers
345 views
Do access modifiers affect reflection also?
I always believe they did, but seeing some answers here make me doubt...
Can I access private fields/properties/methods from outside a class through reflection?
4
votes
3answers
47 views
Different access to property for different classes
I have a base (abstract) class Component. I want to control access to properties of derived classes such that everyone gets read access, but write access is only allowed by certain classes.
Those ...
4
votes
1answer
63 views
When is the JVM bytecode access modifier flag 0x1000 (hex) “synthetic” set?
For some Java byte code parser project I read the JVM spec and figured out that the bit mask values of the Java virtual machine class file format access modifier fields are
ACC_PUBLIC = 0x0001
...
4
votes
2answers
70 views
In AS3, can member variables / methods / getters & setters be wrapped up in one common access modifier?
Is there a way to declare a bunch of members with one common access modifier? I do believe this can be done in C++ and some other languages, curious if it exists in AS3 though.
Instead of:
class ...
4
votes
5answers
760 views
Nested class Access methods for Properties in .NET
I am trying to figure out the best approach for setting and getting properties in a nested class I am creating.
I have a class, Car which has a nested class ControlPanel and want to make the ...
4
votes
4answers
121 views
Access modifiers on properties; why doesn't the following work?
I've run into a compiler error that doesn't quite make sense to me. I have an internal property and I want to restrict its set block such that it is only available through inheritance. I thought this ...
4
votes
3answers
236 views
Java: Subclass access without package access
Fairly new to Java, but I'm wondering why package access is considered "more restrictive" than subclass access. That is, every access modifier which provides subclasses with access to a member also ...
4
votes
3answers
125 views
What's the point of having private constructors if you can access them with reflection?
and maybe private static method and properties, etc.
4
votes
8answers
179 views
C#: Possible to not implement a protected internal abstract on an abstract class?
what do I need to change in my abstract base so that the implementations don't have to implement BOTH methods when only one is needed in any given scenario? My example is:
internal abstract class ...
4
votes
4answers
192 views
How to use Java access modifier properly in library devlopment
I'm developing a library which the other programmer will import and use it for their purposes.
I'm confused about the objective of Java access modifier.
The problem is that I have classes below
...
4
votes
2answers
660 views
Internal classes with ADO.NET Entity Framework
I'm using Entity Framework for creation of my Data Access Layer and I want for all of my classes to be internal.
I know it is possible to manually assign it in the designer for each class.
UPDATE
I ...
4
votes
7answers
455 views
Why use public variables?
Variables, methods and classes can receive various security levels.
From my C# experience, there is:
public
internal
protected
protected internal
private
Now, I understand the use of making methods ...
4
votes
3answers
2k views
4
votes
6answers
1k views
How to make protected AND internal?
Here is my shortened abstract class:
abstract class Report {
protected internal abstract string[] Headers { get; protected set; }
}
Here is a derived class:
class OnlineStatusReport : Report ...
4
votes
1answer
442 views
protected/public Inner Classes
Can someone please explain to me what is the difference between protected / public Inner classes?
I know that public inner classes are to avoid as much as possible (like explained in this article).
...
3
votes
4answers
183 views
How does this code to forbid inheritance work?
I found some rather strange code:
class Base {
public:
virtual bool IsDerived() const { return false; }
};
class Derived : public Base {
public:
bool IsDerived() const { return true; }
};
...
3
votes
7answers
68 views
Can someone show me a case where using public as an access modifier would be “wrong”, then do the same with each modifier?
I've been trying to learn more about access modifiers in java, and everyone has said "Use private to hide things that you don't want other classes / methods using" and I'm just left wondering why that ...