The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
26 views

Ruby on Rails Private Methods?

If I'm writing a private method, does rails think that every method under the word private is going to be private? or is it supposed to be only private for the first method? private def ...
0
votes
1answer
29 views

Private and public methods and variable in JavaScript

I am having some problems to understand how to implement and use classes with private/ public methods and use it, even after some read around. I have the following code: var _Exits = 0; var ...
3
votes
2answers
50 views

Should I test private methods using RSpec?

Is it good practice to write tests for private methods? Consider the following simple example: class Group has_many :members private def release_members members.each { |member| ...
0
votes
1answer
103 views

Why the error C2248 when the copy constructor is private in the code below?

This code emits error C2248: 'A::A' : cannot access private member declared in class 'A' in VS2010, although RVO doesn't need a copy constructor. To prove this, just turn public the declaration ...
3
votes
3answers
217 views

Invoking a private method via JMockit to test result

Am using JMockit 1.1 and all I want to do is invoke a private method and test the return value. However, I am having trouble understanding exactly how to do this from the JMockit De-Encapsulation ...
0
votes
1answer
38 views

Does @Remote in Java EE 6 make private methods accessible?

Consider this code: @Remote public interface ISayHello { private void sayHello(); } Will the sayHello method be accessible from the outside world or not?
0
votes
1answer
38 views

Rationale behind allowing Ruby constants to be re-defined and allowing access to private methods via send() method?

When we try to redefine a constant, Ruby shows only a warning, but not any error. So one can always redefine a constant in Ruby? Also a private method of a class can be invoked using the send method: ...
-2
votes
1answer
57 views

weight loss program using javascript

I am making a weight loss programming using javascript. The user is to input their weight and it wil decrease by -5. I was following a tutorial on how to do this but the tutorial did not have away for ...
0
votes
1answer
62 views

PHP Class private variable misdirected value

first of all, my problem is from my php class called by a php file who is accessed by an AJAX call. The problem is that the return value is totally wrong and is not the same as the sybase_result ...
0
votes
1answer
59 views

php class inheritance private method not calling properly in child (extended) class

class A { public function x() { echo "Public function in class A<br />"; } private function y() { echo "Private function in class A<br />"; } ...
1
vote
3answers
97 views

When is it useful to use a private constructor? [duplicate]

Possible Duplicate: What is the use of making constructor private in a class? When is it useful to use a private constructor? What about a protected one?
0
votes
2answers
54 views

PYTHON: virtual method behavior differences for public, private(single underscore) and private(double underscore) methods

I was trying out NVI(Non-Virtual Interface) Idiom in python, and noticed that private(double underscore) methods don't seem to be acting as virtual. class A(object): def a(self): print ...
1
vote
2answers
64 views

Mock the external call under private method in java

I want to test the ClassToTest class for it's method methodToTest. But I am not able to make it as the private method anotherMethod which is being called by the methodToTest has some dependency with ...
1
vote
2answers
125 views

Hidden instance variables in before_filter method

Is it a good practice to hide instance variable initialization in private methods? For example, I have a user controller with some actions: class UsersController < ApplicationController ...
10
votes
2answers
204 views

Function privacy and unit testing Haskell

How do you deal with function visibility and unit testing in Haskell? If you export every function in a module so that the unit tests have access to them, you risk other people calling functions that ...
1
vote
1answer
145 views

XCode: Duplicate Symbol

I have a C function heightParameter that is a simple tool that I use in a couple of my UIViewControllers. I am declaring this only in my main implementation of each UIViewController subclass (in the ...
3
votes
3answers
76 views

Allow operator= being used only between objects of the same class?

I have a class hierarchy and I want to forbid doing this: Foo *f = new Foo(); Bar *b = new Bar(); f = b; where Foo is a superclass of Bar. Doing this would slice the Bar part of the object. I know ...
0
votes
1answer
73 views

Selectively allowing classes to use others' private class methods, or equivalent solution

In my project Bar, I have this class Foo, whose instances represent unique, named real-world objects. References to these instances are scattered under good care around the data structures in my ...
0
votes
2answers
56 views

Unable to access a private function

//**** Build of configuration Debug for project Calculator **** **** Internal Builder is used for build **** g++ -O0 -g3 -Wall -c -fmessage-length=0 -o src\Calculator.o ...
0
votes
2answers
29 views

PHP - calling a private method for testing, what's the correct design? [duplicate]

Possible Duplicate: PhpUnit private method testing In my unit tests I need to call a private method to set my fixtures to a given state. On the other hand, I'd rather not make this method ...
1
vote
3answers
64 views

How do I call a private method with arguments

I'm having an extremely difficult time getting a private method with arguments to be usable in my toString method but have no idea how to get the two methods to cooperate. main class: import static ...
1
vote
1answer
159 views

How can I return multiple variables and/or use a private int method?

Here's my code as it stands: import static java.lang.System.*; public class Triples { private int number; public Triples() { this(0); } public Triples(int num) { number = num; } public ...
3
votes
2answers
153 views

Python double underscore mangling

I am a bit confused by this behavior (using python 3.2): class Bar: pass class Foo: def __init__(self): self.__cache = None bar = Bar() bar.__cache = None foo = Foo() print(vars(bar)) ...
0
votes
3answers
55 views

Access a member variable from a private method in JavaScript

lick() is a private method of Cat. Unfortunately, Cat's this.paw is not accessible in lick(). Is there a simple way to create a private method that has access to the member variables of its containing ...
0
votes
1answer
578 views

Check and Toggle Airplane Mode with Private APIs on iPhone

Does anyone know how to check and toggle Airplane mode using the Private APIs? (No, SCNetworkReachability is not good enough, and yes, I'm happy to use private APIs that will potentially break in the ...
1
vote
0answers
387 views

how to unittest private method in c# with PrivateObject

Im trying to make a simple unit test of a private method and I let VS2010 autogenerate the method stubb and add the missing info: This is the code I have [TestMethod()] ...
3
votes
5answers
109 views

Unit testing private methods seems to make the whole solution easier

Let's suppose there is an utility class (no data) with one complex (as in, hard-to-test) public method. It uses random number generation, return large arrays of data and that fun stuff. However, if ...
1
vote
6answers
155 views

How do I throw an exception for division by 0?

How do I throw an exception such that it will output "Calculation failed, there is no change between x1 and x2" if my slope's denominator is 0...The following block is a method within a class file. ...
1
vote
4answers
279 views

Should controllers avoid private functions at CakePHP?

I was wondering if controllers at CakePHP should not contain any private function which is not accessible by URL. Sometimes some functions such as add or delete can be so large that I prefer to ...
0
votes
3answers
80 views

Inherit in private methods of inner classes

Let's take the following code: public class Test { class A { public A() {} private void testMethod() { System.out.println("A"); } } class B extends ...
0
votes
3answers
608 views

Good naming convention for private member functions in C++?

For members, I use //.......vv SomeType m_XXX; //.......^^ I'd love to use _ as a prefix for member functions, but names starting with _ or __ are reserved and should not be used. My idea is, that ...
0
votes
1answer
121 views

Unit testing 3rd party library with private methods

I feel like I have gone the wrong direction with my unit test of a 3rd party library so I'm looking for some advice. The library has a private method that reads the path of some files but that path ...
1
vote
1answer
150 views

Private method error using object.entities in Twitter API

I am getting the following error when trying to call tweet.entities in my twitter feed controller. private method `entities' called for #Twitter::Status:0x94d4bf4 I have no methods called entities ...
2
votes
2answers
542 views

Capturing private method arguments with EasyMock and PowerMock

For public method calls, EasyMock's capture() allows you to intercept & examine arguments passed to the method. For private method calls, PowerMock's expectPrivate lets you mock private method ...
5
votes
1answer
213 views

Can one access private member functions through casting to layout-compatible types?

From the discussion of this question How is access for private variables implemented in C++ under the hood? I posed a variation: instead of accessing a private data member, can one call private member ...
0
votes
0answers
276 views

Is it possible to use private Samsung frameworks in my own app?

For last two days I was exploring a possiblity of using private Samsung frameworks in my own app, /system/frameworks/seccamera.jar in particular. Nothing worked yet so I'm wondering if it is possible ...
19
votes
2answers
637 views

OOP with R: is there a way to declare public and private methods (S4 Reference Classes)?

Up-front: I am aware that R is a functional language, so please don't bite ;-) I've had great experiences with using an OOP approach for a lot of my programs. Now, I'm wondering if there's a way to ...
2
votes
4answers
183 views

Blocks vs private methods?

What are the disadvantages of using a block to define a private method within a method, instead of using a real private method? Is there any apart from not being able to call the method from ...
0
votes
1answer
135 views

Local method and namespace in jquery plugin

I created a plugin but want to be sure about what I do with "local" functions. Here is schematically what I did : (function($) { var methods = { init : function( options ) { // CODE ...
0
votes
1answer
626 views

VBA Option Private Module equivalent, but just for a single function in a Class Module?

In VBA, I know that if you want subs/functions to be accessible only within the current Project, you can put those methods into a module marked Option Private Module. But what if I want to do this ...
0
votes
1answer
146 views

Hey I just met you, and this is crazy - here's my pr0blem, help me, maybe

I just started on this really simple C# project on visual stdio 2010 but i'm new to programming, so i figured i'd ask the pros.. lets say i had 2 forms: frmLogin and frmMain frmLogin is where the ...
0
votes
3answers
949 views

Calling a private static method from __callStatic

I want to use __callStatic as a preProcessor for calling static methods. My idea is to make the methods private so every static call is forwarded to __callStatic. Then I could use this to do some ...
1
vote
2answers
871 views

How Call private method that existes in a private inner class

I want to test a private method that existe inside a private inner class public class MyBigClass { private class MyInnerClass { private void wantedMethod() { } } } I want ...
0
votes
3answers
239 views

Asserting Exceptions for Private Methods

I am unit-testing private methods in C# using NUnit. For example, my method (if public) is expected to throw an ArgumentNullException. I can assert that the method throws an ArgumentNullException ...
1
vote
5answers
2k views

C Private Variables Get and Set methods

I am working in C, and have some variables that I don't want to be global, but I do want to have get and set methods for them that can be accessed "Globaly" outside of the file. I am used to doing ...
2
votes
1answer
84 views

objective C explanation about categories?

in my noob mind and proceedings, when i create a category for a class, I create it in a new file like NSArray+Shuffle.h and .m but I have noticed that when I create for example a ViewController, i ...
0
votes
2answers
631 views

Ruby module_function, invoking module's private method, invoked in class method style on module shows error

test_module.rb module MyModule def module_func_a puts "module_func_a invoked" private_b end module_function :module_func_a private def private_b puts ...
0
votes
3answers
72 views

Why user private function?

So the have seem something like this today: $$('input').each(function() { // do something }); What is the difference between that and this: $$('input').each( // do something ); The private ...
4
votes
5answers
1k views

C++ Private Functions: Whether to pass class member variable by function parameter, or not

Here's a question that comes up again and again in C++ class implementation. I'm curious about what people's thoughts are here. Which code do you prefer and why? class A { public: /* ...
0
votes
1answer
294 views

How to use private static methods from another class

I am writing class that extends adobe air PNGEncoder, I want to use the writeChunk method, but it seems to be private static and i cant seems to use it with my code But it gives the error as below ...

1 2 3