Tagged Questions

0
votes
0answers
11 views

c# wrapper and issue with protected memory.

So I've now progressed to having an almost functioning wrapper. Other posts regarding my wrapper issues are: http://stackoverflow.com/questions/2430089/c-wrapper-and-callbacks & …
3
votes
4answers
68 views

Ruby private instance variables, with exceptions

I am making a card game in ruby. I have the Game class, which has an array of Player objects. array_of_players = Array[ Player.new("Ben"), Player.new("Adam"), Player.new("Peter"), …
10
votes
3answers
157 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 …
6
votes
7answers
137 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 …
0
votes
5answers
77 views

Java protected modifier not working as expected

I have the following two files: Fruit.java: package superClass; public class Fruit { protected static void printName() { System.out.println("My name is Khan"); } } Apple.java: package …
6
votes
9answers
204 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 …
3
votes
1answer
97 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 …
1
vote
2answers
70 views

Can I make a protected member public in Java? I want to access it from a subclass

Hi, I'm new to Java and OOP, I was using a private subclass (actually a struct) B in a class A, and everything went well until I decided to make a parent class C for subclass B. I want make public …
5
votes
6answers
346 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 …
4
votes
3answers
151 views

C# set accessor accessible to all types in assembly, and get assessor only to derivated types. How to?

This property in a type with no access modifier (thus internal access): class SomeType { private int length; internal int Length { get { return length; } set length = value; } …
2
votes
6answers
249 views

What’s the real reason for preventing protected member access through a base/sibling class?

I recently discovered that a method in a derived class can only access the base class's protected instance members through an instance of the derived class (or one of its subclasses): class Base { …
4
votes
6answers
255 views

C# protected members accessed via base class variable

Hello. 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 …
0
votes
2answers
216 views

AS3: overriding protected var in subclass

Hi all, I'm having a blackout here. I thought I understood these principles, but I can't seem to get it working anymore. I want to let a DeleteButton inherit from a general Button class. This …
6
votes
8answers
288 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 …
12
votes
8answers
2k 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?

1 2 3 4
15 30 50 per page