Tagged Questions
The private-methods tag has no wiki summary.
8
votes
8answers
4k views
Overriding private methods in Java
As succinctly described here, overriding private methods in Java is invalid because a parent class's private methods are "automatically final, and hidden from the derived class". My question is ...
8
votes
4answers
7k views
Private module methods in Ruby
I have a two part question
Best-Practice
I have an algorithm that performs some operation on a data structure using the public interface
It is currently a module with numerous static methods, all ...
5
votes
4answers
250 views
How to do unit testing on private members (and methods) of C++ classes
I am very new to unit testing and I am a little confused.
I am trying to do unit testing (using the Boost unit testing framework) on a C++ class called VariableImpl. Here are the details.
class ...
5
votes
4answers
92 views
Unit testing as applied to private methods
I'm currently trying to create some classes to do some Fourier Transformations.
I'm trying to do it by creating some unit tests first, then build the basic functionality.
The problem with this is, is ...
5
votes
5answers
403 views
Partitioning struct into private and public sections?
In C++ and Java, data structures can have private, public and protected regions. I'd like to port this concept to a C language program I am writing.
Are there any idioms for implementing private ...
5
votes
4answers
977 views
How do I define private or internal methods in object oriented Perl?
I'm using Damian Conway's "inside-out" objects as described is his wonderful book Perl Best Practices to construct an object-oriented interface to a security system at my client. I'm coming across ...
4
votes
2answers
231 views
Why can't I access private class methods in the class's companion object in Scala?
I'm working on a homework assignment for my object oriented design class, and I'm running into trouble with Scala's companion objects. I've read in a few places that companion objects are supposed to ...
4
votes
2answers
118 views
“Monolithic” page classes - Is this a code smell?
I'm new to PHP and I'm trying to build a site for the first time without using a framework (n.b. I have nothing against frameworks, I just think I should learn to code from scratch before learning a ...
3
votes
4answers
463 views
Private Variables and Methods in Python
Which should I use _foo (an underscore) or __bar (double underscore) for private members and methods in Python?
3
votes
6answers
208 views
How to use a object whose copy constructor and copy assignment is private?
In reading TCPL, I got a problem, as the title refered, and then 'private' class is:
class Unique_handle {
private:
Unique_handle& operator=(const Unique_handle &rhs);
...
3
votes
6answers
2k views
What is the best practice for naming private and static private methods in C#?
I'm trying to figure out what is the smartest way to name private methods and private static methods in C#.
Background:
I know that the best practice for private members is underscore-prefix + ...
2
votes
5answers
265 views
How to write a “truly” private method in C#?
In fact, private methods are implemented in C# that can still be searched with Reflection.
What I am going to do is to write public string Encrypt(string data) and private string Decrypt(string ...
2
votes
5answers
117 views
Private Methods Over Public Methods
I was examining the StringTokenizer.java class and there were a few questions that came to mind.
I noticed that the public methods which are to be used by other classes invoked some private method ...
2
votes
3answers
1k views
objective-c private versus public methods and declaration in header or not?
What is the best practice approach to private methods in objective-c. That is a method that's only going to be used the class as a helper method.
In particular what's not clear to me is:
Is there ...
2
votes
1answer
181 views
Accessing rails private/protected methods through javascript or jquery
I know I can access public controller actions by doing something like this with jquery:
$("#stuff").load("/controller/action");
But how do I access the private/protected actions in a controller ...
2
votes
6answers
147 views
Is there a way to call private functions of a form or class through Type.InvokeMember or messages in C#?
What I have is a bunch of forms in my main application that have both private and public functions. I have a plugin architecture in place that accesses each form when it is created and loaded and ...
2
votes
2answers
165 views
Testing classes with threads, events, and private methods
general consensus
I've done quite a lot of reading up on the subject of testing complex classes and private methods.
The general consensus seems to be:
"if you need to test private methods then ...
2
votes
1answer
126 views
How can I call a inner function from the Python shell?
I have some code (that I can't easily modify), of the following form:
def foo(x):
do_other_stuff_that_I_do_not_want_to_do()
def bar():
"do something"
str(x)
bar()
I would like ...
2
votes
4answers
457 views
Access inner function variables in Javascript
In many frameworks, internal function variables are used as private variables, for example
Raphael = (function(){
var _private = function(a,b) {return a+b;};
var _public = function(a) {return ...
2
votes
3answers
953 views
functional test for rails controller private method
I have a private method in my controller. which is used for some database update. this method i am calling from another controller method. and it works fine.
But when i am trying to write a test case ...
1
vote
4answers
76 views
Allow class access to single private member
I have a class A which has a private method called a(). I have also a class B which needs to access a() (but just B should have access to a(), thats why a() is private). I could now use a friend ...
1
vote
2answers
49 views
How can i use a private method in a public method to check Validity?
private boolean isValid(int aRating)
{
return aRating >= 1 && aRating <= 10;
}
or
private boolean isValid(int aRating)
{ ...
1
vote
6answers
113 views
How to use a private method in Java
I am given a class that has a private method say setCoors(int x, int y). The constructor of that class has the setCoors in it too. In a different class, I want to have a method setLocation which calls ...
1
vote
3answers
73 views
Javascript Private Methods
I was reading chapter 2 of Apres Javascript Pro techniques and in particular the section about Provate Methods.
The following code snippet is shown as an example:
// Listing 2-23. Example of a ...
1
vote
0answers
305 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 ...
1
vote
2answers
208 views
Objective-C: Should I declare private methods?
I've been declaring private methods in class extensions, according to Best way to define private methods for a class in Objective-C.
But, I just realized that, in Xcode 4, if I leave out the ...
1
vote
2answers
241 views
Private methods in a Category, using an anonymous category
I'm creating a category over NSDate. It has some utility methods, that shouldn't be part of the public interface.
How can I make them private?
I tend to use the "anonymous category" trick when ...
1
vote
1answer
106 views
Call private or protected method from an include file
myclass.php
class myclass {
private $name;
public function showData(){
include_once "extension.php";
otherFunction($this);
}
private function display(){
echo "hello world!";
}
}
...
1
vote
1answer
66 views
Ruby RSS — Private method send called for RSS:REXMLListener
I am trying to integrate a RSS parser into my IRC bot, and i've found some simple code to do so online, however, if i put this code in the bot, I get this:
Error: private method `send' called for ...
1
vote
2answers
260 views
undefined class/module YAML::PrivateType
I have uploaded a new version of gem to the server, successfully. If i
install the gem from local, its successfully installed.
But I'm getting following error while installing the same gem from
...
1
vote
3answers
295 views
How can I set the JavaScript object name that gets returned in a console.log?
So, first question here - please be gentle.
I'm working on a fairly JavaScript heavy project with a few other developers from various non-web programming backgrounds and we've decided to try and use ...
1
vote
1answer
74 views
reduce the access level of a function in a derived class
Is there any possibility to reduce the access level of a function in a derived class in PHP?
example (... means more code)
class foo
{
public function myFunction() { ... }
public function ...
1
vote
2answers
53 views
Is it possible to use a static private method of a class as callback?
I saw code that contained the following line:
preg_replace_callback($regex, 'TextileParser::replaceAnchor', $text);
where TextileParser::replaceAnchor() is a private static method. Is that ...
0
votes
2answers
51 views
Method Retrieval and Inheritance Confusion
Ok,so I am getting a lot of trouble, I am still learning Java and my book has set me a task that I find common over the net, the part that I am stuck on is...
I must create a bank account program, an ...
0
votes
4answers
82 views
Moq c# private method to throw an exception
Given this class:
public class MyClass
{
private void MyMethod()
{ ...
}
public void Execute()
{
try{
...
MyMethod();
...
}
catch(Exception e)
{
...
}
}
}
How can I Mock ...
0
votes
3answers
68 views
How to write a private method that returns True for certain peramaters?
So the exact wording is,
"Write a private method isValid(aRating) that returns true if the given rating is valid, which is between 1-10."
private void isValid(aRating)
{
}
What Goes in the ...
0
votes
2answers
39 views
In ObjC, how do I hide implementation a superclass's methods in a subclass?
In ObjC, how do I hide implementation a superclass's methods in a subclass?
I'm not sure if @private would do the trick, as it appears to only apply to ivars.
0
votes
0answers
74 views
Ruby method scope using shoulda Test::Case
I'm having a little difficulty with method scope in Ruby using Shoulda. I have a test that I have some DRY code in a private method but when I run it from a shoulda context I get method not found ...
0
votes
3answers
97 views
Does the Mac App Store allow subclassing private methods?
The Mac App Store guidelines state:
Apps that use non-public APIs will be rejected
Does that include sub-classing public objects with methods that aren't mentioned in their class' reference?
0
votes
4answers
120 views
assign value of readonly variable in private method called only by constructors
C# compiler gave me the following error
CS0191: A readonly field cannot be assigned to (except in a constructor or a variable initializer)
Do I have to move the code (in my private function) into ...
0
votes
1answer
115 views
Issues with JustMock and Large Test Runs
Ok so I have an issue with JustMock that I am hoping that someone here can help me with.
I have a class with several test methods(something like 80). Each of these methods when run independently will ...
0
votes
2answers
121 views
Access to a private method in C#
Hi People I'm newbie in the C# world and I'm having a problem. I have done an array in the Form_Load method of my program, but I need to access the array in a picture_box method like this:
...
0
votes
5answers
68 views
Is it allowed for a class to implement an interface plus additional private method(s) in C#?
I have the following interface:
interface IExcelServices
{
Dictionary<string, string[]> FilterFields(Dictionary<string, string[]> excelContent);
Dictionary<string, ...
0
votes
3answers
38 views
private method call another private method, doing correct?
I am designing an OOP application, it's my first application.
I have class (similar to one mentioned below)
class Temp {
private function a() {
<code goes here>
}
...
0
votes
2answers
458 views
Objective-C call private methods
The following is an example of private method in Objective-C:
MyClass.m
#import "MyClass.h"
@interface MyClass (Private)
-(void) privateMethod:(NSString *)arg1 and: (NSString*)arg2;
@end
...
0
votes
1answer
187 views
Which technique to use for creating private methods in Obj-C?
When I want to create private methods in Objective-C, what should I use?
1) The well known categories technique.
2) @private directive.
(I'm doing iOS development).
0
votes
1answer
136 views
Publicize.exe exits with error "Value cannot be null. Parameter name : interfaceType
I'm trying to make private accessor class using Visual Studio 2010.
Here is the return of Publicize.exe:
Error occurred during processing of assembly xxx Value cannot be null.
Parameter name: ...
0
votes
1answer
245 views
rails search with texticle: private method `scan' called for #<Array:0x103f03f08>
I have a rails app which I want to make searchable with tenderlove's texticle. In the console it works fine, but in my app I get an error like this:
...