Tagged Questions

13
votes
21answers
609 views

Should I document my private methods?

Private methods documentation can only be seen by who has access to the source code. Is it worth the effort spent on it?
0
votes
4answers
29 views

Visual Studio: Warn when private or internal members have no references

Is there a way to get visual studio to warn that a private member does not have any references within the class? How about internal members that have no references within the packa …
1
vote
7answers
143 views

Proper way to declare and set a private final member variable from the constructor in Java?

There are different ways to set a member variable from the constructor. I am actually debating how to properly set a final member variable, specifically a map which is loaded with …
1
vote
7answers
143 views

Is it ok for private instances to be shared among objects?

I am only allowed to use private members in the programming course I'm taking, and I was wondering if something like this is ok. public class View { private Model object_; …
4
votes
1answer
94 views

Easy way to access private fields/methods/properties using f# interactive

F# interactive is a powerful development tool as it allows to run either WinForm or Wpf window and invoke arbitrary code in there. This gives a way for a 'try-before-you code' app …
6
votes
3answers
256 views

Deleting object with private destructor

How is that possible that it is allowed to delete object with private destructor in the following code? I've reduced real program to the following sample, but it still compiles and …
0
votes
4answers
75 views

Accessing parent variables in child method

Hi, I currently have two classes, one called Dog, one called Poodle. Now how can I use a variable defined in Dog from the Poodle class. My code is as follows: class dog { …
2
votes
5answers
69 views

Alternatives to backdooring java access when unit testing.

I'm trying to unit test a class with a number of private methods. Each of the private methods can be rather extensive. I can either make the method package scoped (which causes a …
0
votes
6answers
154 views

Javascript: Debuging code created by eval() and new Function()

Hi all, im trying for put a private var into an already existent function, example: var AObject={ get:function(s){ return s.toLowerCase()+a; } } function temp(){ …
4
votes
7answers
312 views

Why is it allowed to access Java private fields?

Consider this example : import java.lang.reflect.Field; public class Test { public static void main(String[] args) { C c = new C(); try { Field f = C.class.g …
0
votes
3answers
230 views

How to mutate a private field from the abstract class in Java?

There's an abstract class: public abstract class AbstractAny { private long period; public void doSomething() { // blah blah blah period = someHardcodedValue; // …
3
votes
3answers
225 views

What is the benefit of private name mangling in Python?

Python provides private name mangling for class methods and attributes. Are there any concrete cases where this feature is required, or is it just a carry over from Java and C++? …
1
vote
3answers
95 views

difference of variable in placement of private keyword in a MFC class

Using the following code snippet as an illustration to my question: // #includes and other macros class MyClass : public CFormView { private: DECLARE_DYNCREATE(MyClass) …
0
votes
9answers
149 views

Best Practice on local use of Private Field x Property

Hi, When inside a class you have a private fiels and expose that field on a public property, which one should I use from inside the class? Below you is an example on what I am tr …
6
votes
12answers
564 views

Accessing private members

Is it ethical to access a class' private members by casting it to a void pointer and then to a struct? I don't think I have permissions to modify the class that contains the dat …

1 2 next
15 30 50 per page