Tagged Questions
0
votes
1answer
110 views
Trying to call methods in main method with variable initialized in other methods
I am pretty sure i have this all figured out but i have 3 arrays that i initialized not in the main method, but obviously i cant call those arrays when calling the method in the main method, so my ...
-2
votes
1answer
58 views
How do static methods work in this example? [closed]
package fnl;
import robocode.Robot;
import robocode.ScannedRobotEvent;
public class FnlBot2 extends Robot{
public void run(){
turnLeft(getHeading() % 90);
turnGunRight(90);
...
2
votes
2answers
70 views
Javascript, print the global object from a static function
With the following code, how can the method my_method be called so that it prints the global object (window) ?
MyClass = function() {
this.my_method = function() {
console.log(this);
...
-2
votes
4answers
811 views
How to call method in main activity from other activity?
I want to call public method in main activity from other activity. How can I do that?
class MainActivity extends Activity {
public void myMethod() {}
}
class MyActivity extends Activity {
...
1
vote
3answers
156 views
Java program freezes on call to any method of a particular class
I have an application that I am working on that decided to stop working in a very unexplained manner. After some debugging and error tracing, I found the problem to be in the call to a specific method ...
0
votes
1answer
76 views
undefined method `boo' for Static:Class
I have a class in the lib directory:
lib/static.rb
Inside that I have:
class Static
def self.boo
return 'what'
end
end
I have a controller:
class PensionsController < ...
0
votes
4answers
687 views
C# : Difference between method types [duplicate]
Possible Duplicate:
What is the difference between Public, Private, Protected, and Nothing?
I have a question :
What is the difference between these method types ?
Static , Public , ...
5
votes
3answers
455 views
static block vs private static method for static member initialization
A static variables can be initialized with the private static methods or with a static block. Are there any subtle difference between the two? Are there any situation where I cannot use the static ...
0
votes
1answer
73 views
PHP __callStatic failing intermittently
I have a simple __callStatic magic method defined in my class:
public static function __callStatic($method, $args) {
if(substr($method, 0, 8) == "require_") {
// do stuff
}
}
The ...
0
votes
1answer
141 views
PHP methods that work in both instantiated and static contexts?
I'm trying to setup some PHP methods that are callable in instantiated and static contexts. What are some good ways to do this? For example I want to be able to do:
Foo::bar($item);
...
1
vote
2answers
131 views
Functions Vs Static Methods
What is More Faster Using Functions or Using Static Methods in multiple threaded programme?Please explain why it is faster.?
2
votes
4answers
3k views
Call a Non Static Member Method from Another Method
Is there a way to call a non static class member method from another method that is contained within the main class in c++? If so, what would the code look like?
Problem is, I can't declare this ...
0
votes
4answers
81 views
Am i correctly setting up this static method?
Instructions: Write a static method createAdult for Person that returns a special instance of this class. The instance represents a generic adult and has the name "An adult" and the age 21.
Person is ...
0
votes
4answers
3k views
C#, access (get or read) the textBox values in a static method?
I have a form (form1) that has a text field (textBox1)
I have a class that has the method "public static string getValue()"
how I can read the value of the textBox1 within the method getValue() ??
...
2
votes
5answers
18k views
calling another method from the main method in java
I have
class foo{
public static void main(String[] args){
do();
}
public void do(){}
}
but then when I call do() from main by running the command java foo on the command line, ...
0
votes
1answer
96 views
combine two or more table into one object
i need to combine two or more table into one object by using c# 4,0... i wrote a class for a table which included simple select selectbyid insert update and update.... it works fine for single ...
1
vote
4answers
5k views
static and non static methods in java [duplicate]
Possible Duplicate:
When should a method be static?
i am trying to make an interface class for tube/subway ticket machine. well not for real, but for a coursework in a computer science ...
0
votes
1answer
166 views
F# Extention Methods on Lists, IEnumberable, etc
I have searched StackOverflow (and other sources) for this answer, but can't seem to find anything.
In C#, if I had a widget definition, say:
class widget
{
public string PrettyName() { ... do ...
1
vote
7answers
485 views
Create an instance from a static method
let's say I want my users to use only one class, say SpecialData.
Now, this data class would have many methods, and depending on the type of data, the methods do different things, internally, but ...
7
votes
4answers
268 views
Refactoring large method in .NET
If I have a large .NET method, I want to know if it is good practice to split it up into multiple methods or not. My concerns are:
1 - Is there any point creating a method if it will only be called ...
0
votes
5answers
155 views
Class design: allow a class to be used both as an object and also supply public static methods
I have a silly, little class "FileSystemSize" which can be used both as an object and also via public, static methods. The output is similar, but not identical in each case.
The class was intially ...
0
votes
3answers
666 views
Reference for the C methods used in iPhone development
Is there a good reference somewhere with all the C functions that can be used by default in iPhone development (I guess they lie in the Foundation framework)? I mean functions like:
arc4random(), ...
73
votes
20answers
42k views
Java - static methods best practices
Let's say I have a class designed to be instantiated. I have several private "helper" methods inside the class that do not require access to any of the class members, and operate solely on their ...
