Tagged Questions
The protected tag has no wiki summary.
58
votes
6answers
57k views
In Java, what's the difference between public, default, protected, and private?
Are there clear rules on when to use each of these when making classes and interfaces and dealing with inheritance?
37
votes
11answers
4k views
What's the best way to unit test protected & private methods in Ruby?
What's the best way to unit test protected and private methods in Ruby, using the standard Ruby Test::Unit framework?
I'm sure somebody will pipe up and dogmatically assert that "you should only unit ...
18
votes
1answer
170 views
Can a static method in a derived class call a protected constructor in C++?
This code works with clang but g++ says:
error: ‘A::A()’ is protected
class A
{
protected:
A() {}
};
class B : public A
{
static A f() { return A(); } // GCC claims this is an error
};
...
18
votes
8answers
7k views
Should you ever use protected member variables?
Should you ever use protected member variables? What are the the advantages and what issues can this cause?
17
votes
1answer
174 views
Can I create a method with Java protected access in Scala?
I have a Java class that I have ported to Scala, but which still has some Java subclasses implementing abstract functionality.
The original Java had
public abstract class Base {
...
...
16
votes
7answers
4k 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 ...
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
5answers
313 views
subtle C++ inheritance error with protected fields
Below is a subtle example of accessing an instance's protected field x.
B is a subclass of A so any variable of type B is also of type A.
Why can B::foo() access b's x field, but not a's x field?
...
11
votes
4answers
1k views
PHP: Public, Private, Protected
When and why should I use and what's the deference between, public, private and protected functions/variables inside a class?
Examples:
// Public
public $variable;
public function doSomething(){
...
10
votes
3answers
1k views
One question about protected constructor
One question about protected constructor. I learnt that the protected constructor can be used in the derived class. How ever, I found the code below has an error. Why does it happen like this?
class ...
10
votes
1answer
2k views
Why is Java's AbstractList's removeRange() method protected?
Does anyone have any idea, why removeRange method in AbstractList (and also in ArrayList) is protected? It looks like a quite well-defined and useful operation, but still, to use it, we're forced to ...
9
votes
3answers
610 views
protected vs public constructor for abstract class? Is there a difference?
This question is out of curiosity. Is there a difference between:
public abstract class MyClass
{
public MyClass()
{
}
}
and
public abstract class MyClass
{
protected MyClass()
...
9
votes
4answers
1k views
Is there a way to forbid subclassing of my class?
Say I've got a class called "Base", and a class called "Derived" which is a subclass of Base and accesses protected methods and members of Base.
What I want to do now is make it so that no other ...
8
votes
5answers
3k views
Protected and private methods in Rails
Method visibility in Ruby (public, protected, and private methods) has been well explained in places like this blog post. But in Ruby on Rails it seems slightly different than it would be in a regular ...
8
votes
5answers
1k views
Why does the “protected” modifier in Java allow access to other classes in same package?
What is the reason that in Java, a member with a "protected" modifier can not only be accessed by the same class and by subclasses, but also by everyone in the same package?
I am wondering about ...
7
votes
2answers
971 views
Protected fields not visible to subclasses
I'm writing a custom view that directly extends android.view.View. If I try to access fields mScrollX or mScrollY, I see an error that the field "cannot be resolved or is not a field." The source code ...
7
votes
5answers
293 views
What do you choose, protected or internal?
If I have a class with a method I want protected and internal. I want that only derived classes in the assembly would be able to call it.
Since protected internal means protected or internal, you ...
7
votes
6answers
2k views
C# protected members accessed via base class variable
It may seems rather newbie question, but can you explain why method Der.B() cannot access protected Foo via Base class variable? This looks weird to me:
public class Base
{
protected int Foo;
}
...
7
votes
14answers
1k views
Is the use of protected methods a bad thing?
A friend of mine has just posited that protected methods (yes, methods) constitute a code smell. That is, they're indicative of potential bad programming practice.
My gut says he's wrong, but I'm ...
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:
...
7
votes
5answers
4k views
Can you ever have too many “protected virtual” methods?
Here's a question for those of you with experience in larger projects and API/framework design.
I am working on a framework that will be used by many other projects in the future, so I want to make ...
7
votes
13answers
2k views
Should protected attributes always be banned?
I seldom use inheritance, but when I do, I never use protected attributes because I think it breaks the encapsulation of the inherited classes.
Do you use protected attributes ? what do you use them ...
6
votes
1answer
163 views
How to save a password protected PDF to a non password protected PDF
I want to print a password protected PDF so at first, I tried to convert this PDF into NSData and pass it to UIPrintInteractionController.
But according to Googled results, you cannot unlock a PDF ...
6
votes
3answers
207 views
Why can't subclasses create new objects with a base class protected constructor?
I'm porting some Java code to C#, and I ran into this idiom used to copy objects:
class Base
{
int x;
public Base(int x) { this.x = x; }
protected Base(Base other) { x = other.x; }
}
...
6
votes
6answers
215 views
Access to method pointer to protected method?
This code:
class B {
protected:
void Foo(){}
}
class D : public B {
public:
void Baz() {
Foo();
}
void Bar() {
printf("%x\n", &B::Foo);
}
}
gives this error:
t.cpp: In ...
6
votes
4answers
235 views
Is there any reason not to use 'protected' properties?
Just wondering...
Is there any reasons not to use protected properties?
I mean instead of using this:
public abstract class Foo
{
protected Bar { get; private set; }
}
to use this one:
...
6
votes
1answer
418 views
Protected Members of Other Instances in Scala
I just ran into a difficulty while learning Scala. I have an inheritance hierarchy that is essentially equivalent to this:
class A {
protected def myMethod() = println("myMethod() from A")
}
...
6
votes
1answer
251 views
Protected Internal properties vs Protected properties and Resharper
I've just picked up Resharper and have been playing around converting fields to properties. I want these properties to be protected, but Resharper doesn't want to give me that option. Instead there is ...
6
votes
3answers
804 views
Why protected superclass member cannot be accessed in a subclass function when passed as an argument?
I get a compile error, which I'm slightly confused about. This is on VS2003.
error C2248: 'A::y' : cannot access protected member declared in class 'A'
class A
{
public:
A() : x(0), y(0) {}
...
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
9answers
397 views
What's the difference between an abstract class, and a class with only protected constructors? (.NET)
What are all the difference between an abstract class, and a class with only protected constructor(s)? They seem to be pretty similar to me, in that you can't instantiate either one.
EDIT:
How ...
6
votes
8answers
830 views
Accessing protected member functions from test code in C++
I've been racking my brain trying to think of the best way to access a protected member function from some test code in C++, here's my problem:
//in Foo.h
Class Foo
{
protected:
void ...
6
votes
3answers
9k views
How are java.lang.Object's protected methods protected from subclasses?
The keyword protected grants access to classes in the same package and subclasses (http://java.sun.com/docs/books/tutorial/java/javaOO/accesscontrol.html).
Now, every class has java.lang.Object as ...
5
votes
1answer
83 views
package vs. protected protection with Java reflection
Why can I use reflection to instantiate a inner protected class, but not an inner class with package-level protection? I wouldn't think either would be accessible outside the package.
Consider the ...
5
votes
3answers
1k views
java override protected methods
Test.java
package a;
import b.B;
public class Test {
public static void main(String[] v) {
new A().test();
new B().test();
}
}
A.java:
package a;
public class A {
...
5
votes
7answers
257 views
Reasoning Behind PHP5 Protected Variables
Can you explain what the reasoning would be on why I would want to use "protected" versus "public" or "private" on some class variables and methods in PHP5? I've just yet to find a case where I ...
5
votes
2answers
931 views
Best practices to test protected methods with PHPUnit (on abstract classes)
With PHPUnit and PHP >= 5.3 it is possible to test protected methods. The following page at stackoverflow outlined the best practice on it:
"Best practices to test protected methods with PHPUnit"
...
5
votes
7answers
1k views
Protected Keyword C#
I want to know what is the meaning of protected in C#, why we use it, and the benefit of the keyword?
For instance
protected int currentColorIndex;
Please elaborate.
5
votes
3answers
709 views
Java : protected access across package
I was curious to understand what's happening here.( a protected member being accessed outside the package through a subclass )
I know for classes outside the package, the subclass can see the ...
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
6answers
742 views
Favorite C++ template hack
Templates are both the blessing and curse of C++. Someone hates them, someone loves them. For those of you are in the latter group, whats your favorite template "hack", and what does it do?
I'll ...
5
votes
4answers
889 views
Protected data in parent class not available in child class?
I am confused: I thought protected data was read/writable by the children of a given class in C++.
The below snippet fails to compile in MS Compiler
class A
{
protected:
int data;
};
class B : ...
5
votes
5answers
876 views
What is the best way to unit test a protected method in C++?
What is the best way to unit test a protected method in C++?
In Java, I'd either create the test class in the same package as the class under test or create an anonymous subclass that exposes the ...
5
votes
3answers
1k views
Detecting Vista IE7 Protected Mode with Javascript
I'd like to be able to detect Vista IE7 Protected Mode within a page using javascript, preferably. My thinking is to perform an action that would violate protected mode, thus exposing it. The goal is ...
4
votes
3answers
56 views
Does variable privacy actually have anything to do with security or is it just for programming convenience?
For years I have been programming and I think I even understand the difference between public, private and protected for the most part, however are these names simply misleading? Are these levels of ...
4
votes
4answers
68 views
How to protect a class in PHP
We work on a PHP project which has plugins. Our plugin includes one open source class.
Another plugin uses this same class.
PHP will throw "Can not re-declare class" error if both plugins include a ...
4
votes
4answers
110 views
C++ Protected / Public overloads
I have a class like this :
class Foo
{
public:
Foo()
{
for(int i = 0; i < 10; ++i)
v.push_back(i);
};
const vector<double>& V() const {return v;};
...
4
votes
7answers
449 views
Why doesn't my use of “protected” work?
I have read that a protected member can be accessed from derived classes, but the following does not work.
class A
{
protected int Test;
}
class B:A
{
A instanceOfA= new A()
public B()
...
4
votes
2answers
158 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...?
...
4
votes
2answers
202 views
Scala protected object
In Scala, if I create an object and companion class, identifiers declared with the protected modifier can be accessed from the class if the object is imported:
object Foo {
protected val X = 42
}
...