1
vote
3answers
66 views

C#, making public members their methods private

I the following class: public class Humptydump { public Humptydump() { } public Rectangle Rectangle { public get; private set; } } in this class the Rectangle ...
0
votes
0answers
48 views

Can you call a protected method inside a overwrite private virtual?

I having a link error (unresolved external symbol) for a protected method (not virtual) being called in a virtual private method that Im overwriting. The link error is solved by changing protected to ...
-3
votes
0answers
34 views

Private Helper Methods [closed]

I have an assignment for uni that was split up in 7 stages. I did the first 4 stages by myself, but now I'm on the 5th stage, which is supposed to be easy, but I'm stuck and can't figure it out, I've ...
0
votes
1answer
112 views

Java Reflection private method with parameters best approach?

i am trying to call a private method using java reflection i developed a small method to call the others methods iterating over all methods and comparing by name and by parameters type i have invoke 4 ...
0
votes
2answers
206 views

How to call private method by other methods?

I am confused of calling a private method by another method(public) belonging to the same class.Once i have been told i gotta create an object of that class and then call the private method via this ...
0
votes
1answer
29 views

How to update another class's method?

There are two classes (class Home and class Away). Class Away has a method called update and update method has some arguments(speech,writing,reading) whose values are assigned in class Home. And ...
2
votes
2answers
87 views

I want to make the printer print until the balance in the account is not enough for the printing job

The problem is that I keep getting the balance to be minus, it executes the part where the money needs to be taken out, but the 'if' statement that I've put in place should prevent that. I'm new to ...
1
vote
3answers
73 views

Setting private properties of a class using its public methods, c++

Something like this: class someclass { public: someclass(); ~someclass(); long Set(int x, int y); private: int _x; int _y; }; long Set(int x, int y) { _x = x; ...
4
votes
3answers
622 views

Passing objects from one private method to another

I have been programming for a little while now, and I have a question on the use of public methods. I am working on a vending machine program, and I have a private method setUpMachine() to initialize ...
2
votes
4answers
106 views

Why are my private vars being changed?

here is the fiddle: http://jsfiddle.net/Xh4GU/1 or the code: function Vector() { var v = new Array(123, 456, 789); this.getV = function() { return v; } } function ...
-6
votes
1answer
145 views

Accesing Private Methods in java? [closed]

how to implement such a functionality to access private members ? Java checks access permissions during compilation only. Are you surprised? I was surprised very much to find out this fact. So you ...
0
votes
2answers
162 views

Accessing class variables from private actionPerformed method

In the code below, I don't know why the values of variables uNomba and list are NULL when accessed from jButton1ActionPerformed method. I would appreciate your help, on how I can successfully execute ...
3
votes
1answer
112 views

Modifying private class variables within a class method?

This is probably a really basic error I'm making, but I'm quite new to c++ so please don't judge! Basically, I've got two classes as follows: class A{ private: vector< vector<int> ...
0
votes
3answers
125 views

How do I make methods only available to properties in Obj-C?

I'm still new to Objective-C and I recently learned how to make properties, so far so good, but one thing that bothers me is that the setter and getter methods are still publicly available even after ...
3
votes
2answers
214 views

Should I make C# private methods generic?

I have an API which includes some methods that take in a type parameter. I am now converting them to generic methods as part of improving the API (more type-safe), while keeping the non-generic ...
0
votes
4answers
2k views

Advantage of set and get methods vs public variable [duplicate]

Possible Duplicate: Why use getters and setters? Is there any advantage to making methods to access private variables in your class instead of making the variable public? For example is ...
0
votes
3answers
178 views

Undeclared method in Objective-C

#import "PsychologistViewController.h" #import "HappinessViewController.h" @interface PsychologistViewController() @property (nonatomic) int diagnosis; @end @implementation ...
0
votes
2answers
179 views

Using Private Static Methods OOP Concept

I have a doubt here where after so much explainations I still don't really get the point. Why do we need to declare a Private Static Methods? Since the method is private it can be only accessed by the ...
0
votes
1answer
802 views

Private and public methods in RequireJS objects

I'm not certain how to set methods private or public when using requirejs, as it uses shorthand for object declaration. In the following code, I would prefer if the property "id" and the method ...
0
votes
3answers
154 views

Private fields inside private methods VS pass them from public methods

What is the better way to work with private field and private methods? Is it graceful to use private field inside private methods or it's better to put them as parameters,when call private method ...
0
votes
5answers
40 views

What's the proper way to access fields from methods

I want to access a StringBuilder field in a class from a method. Both the field and method are non-static. I've tried this many ways, and it all seems to work whichever way I do it, but I was just ...
3
votes
5answers
214 views

Java: necessity of private variables and return methods [closed]

In code I've seen, some people often use private variables, e.g. private static int number; And they usually have access methods such as public static int returnNumber(){ return number; } ...
3
votes
2answers
104 views

How/Why does this work in python? rover._Dog__password()

I am doing the python koan (for python 2.6) and ecnountered something I don't understand. One of the files has the following code in line 160: class Dog(object): def __password(self): ...
2
votes
4answers
371 views

Rails: what are the main reasons for making methods private?

If the end_user cannot access the source code of the app, why we still need to make some methods private? I'm reading the Pragmatic Agile Web Development with Rails and I couldn't understand why we ...
2
votes
2answers
237 views

Ways to protect the global scope in Javascript

ORIGINAL QUESTION: i am studying js and i would like to know if there is any (useful) difference between these two ways of protecting the global scope other than the fact that the second one can be ...
0
votes
1answer
74 views

Rails vanity gem custom metric error: private method `to_time' called

Hi I am trying to setup Vanity gem into a rail 3 application. I am creating a custom metric to experiment a bit. So I created it following the suggestions on their website: metric "Signups" do ...
1
vote
1answer
914 views

how to write rspec for private method in controller with params

I have controller class ApplicationController < ActionController::Base def index end private def handle_login_sequence username = params[:userName] password = ...
1
vote
0answers
747 views

Obj-C Private Method Compiler Warnings

Private methods are a useful construct to keep code organised within class boundaries. An example being the organisation of long winded Quartz 2d instructions in a custom UIView subclass. I am able to ...
0
votes
2answers
6k views

How to write jUnit tests for private methods [duplicate]

Possible Duplicate: What's the best way of unit testing private methods? As private method's visibility does not allow for them to be seen outside of the class, how can you write tests ...
2
votes
2answers
119 views

Javascript OOP privilige method accessing private method with private paramter as input

I'm trying to change a private member by using a Privileged method that I defined. I created a simple class to give you an example of the current issue I'm having: // Constructor function ...
6
votes
1answer
799 views

Call private method retaining call stack

I am trying to find a solution to 'break into non-public methods'. I just want to call RuntimeMethodInfo.InternalGetCurrentMethod(...), passing my own parameter (so I can implement ...
0
votes
4answers
258 views

Do you provide DEBUG logging level for private methods?

I add logging for Java classes.In particularly, logger.debug level (for development mode). As far private method called within public ones, is there sense to provide logging within private methods?Is ...
0
votes
2answers
148 views

When should private methods in PHP work on class variables, and when should such methods be used as functions?

I'm wondering when private/protected methods should work on the class it's variables (like $this->_results) and when such methods should be used as if they were functions (like ...
1
vote
1answer
700 views

ResourceManager override GetResourceFileName

I want to override a method in the System.Resources.ResourceManager class in mscorlib v4. I want to override the method GetResourceFileName like this; protected override string ...
2
votes
1answer
2k views

groovy call private method in Java super class

I have an abstract Java class MyAbstractClass with a private method. There is a concrete implementation MyConcreteClass. public class MyAbstractClass { private void somePrivateMethod(); } ...
3
votes
2answers
107 views

what does this refer to in a javascript private method

Using the following bit of code: function Node(){ .... function foo(request){ for (var name in this ) { log(name +" is "+this[name]); if(!(name == 'all' || typeof ...
3
votes
5answers
897 views

private methods using .net reflection. why?

I used reflection many times before on public methods but never realized that private methods can be invoked too. See the link I am still thinking why is that allowed in the first place? Isn't that ...
9
votes
2answers
4k views

Private methods using Categories in Objective-C: calling super from a subclass

I was reading how to implement private methods in Objective-C (Best way to define private methods for a class in Objective-C) and a question popped up in my mind: How do you manage to implement ...
10
votes
11answers
3k views

Unit testing private code

I am currently involved in developing with C# - Here is some background: We implement MVP with our client application and we have a cyclomatic rule which states that no method should have a cyclomatic ...
2
votes
2answers
102 views

Call external (i.e. interface) functions also internally?

I am wondering if it is good practice to call public functions also internally. By public functions I mean all methods/functions that you created explicitly to be called from other objects, modules, ...