Methods that neither require an instance of the class nor can they implicitly access the data (or this, self, Me, etc.) of such an instance.

learn more… | top users | synonyms (1)

3
votes
4answers
71 views

Can I use the result of a C# method (with an argument) as a default argument of another?

I have a static class with method: public static class FooUtilities { public static FooStruct[] GetFooBar(int foo) { var fooStruct = new FooStruct[]; // Connect to SOAP API, ...
3
votes
2answers
568 views

Write to static field - is FindBugs wrong in this case?

I have a Java class like this: public class Foo { public static int counter = 0; public void bar(int counter) { Foo.counter = counter; } } FindBugs warns me about writing to ...
1
vote
5answers
106 views

Should Instance Variables Be Manipulated From a Non-Static Context in Java

Just getting my feet wet with Java so I apologize if this seems a bit naive. I'm trying to get a better understanding of the conventions for accessing instance / member variables in practice. ...
4
votes
7answers
93 views

How would I use a static method to increase a non-static variable?

I have a Java class called Game which has a non-static integer called score. I would like to implement a static method which would increase the score of each Game object by 1, named ...
2
votes
1answer
321 views

Java: Creating an Instance of a Subclass from the Superclass in a static method

I am trying to create a new Instance of a subclass from my Super Class. This is my super class public abstract class Worker { String world; protected abstract void onLoad(Scanner read); ...
-5
votes
2answers
195 views

How to create 2 or more classes that interact with each other? [closed]

How do I create two or more classes that interact with each other? For example, a method in the first class will be static, producing a Fibonacci number for instance, and another method in the second ...
0
votes
0answers
128 views

How to call selector in static method implementation

How can I call selector in static method implementation? I tried this, but with no success. What am I doing wrong? WhiteScreenFader.m +(void) fadeIn:(float)duration inView:(UIView *)view ...
0
votes
0answers
53 views

Why does a null pointer to a class can access static functions? [duplicate]

Possible Duplicate: What happens when a static method is invoked using a null object reference? I'm curious as to how - and why - this behavior is implemented: If I hold a null pointer to ...
3
votes
2answers
122 views

NSString stringWithFormat return type, why is it “id”?

Why does the method [NSString stringWithFormat] return an id type? From the name I'm expecting it returns a NSString, not a generic pointer. Other classes follow this "rule". For example [NSNumber ...
-4
votes
3answers
139 views

Java error “Non static variable cannot be referenced from a static context” [duplicate]

Possible Duplicate: java : non-static variable cannot be referenced from a static context Error My aim is to create a program for client server chat.I wrote the following code ...
0
votes
1answer
31 views

Non-static methods used in a static context error

I keep getting two errors for this bit of code about non-static methods used in a static context. This code uses an ArrayList of different objects of birds, cats, and dogs and puts them in the ...
1
vote
2answers
76 views

Correct use of static methods

I have following simplified class named Password.py in folder1: import random CHARS = "ABC" class PasswordHelper(object): ...
5
votes
1answer
163 views

guava: why methods create() instead of constructor?

Please, can you explain why the creators of guava prefer to define the constructors as private, and to define static methods create() to create objects ?
0
votes
2answers
185 views

android - Pass class as parameter to access static variables

I need to pass a class so I can access its static variables. Example: Class FirstClass { static int x = 1; } Class SecondClass { static int x = 2; } I have a method in another class (which will be ...
5
votes
1answer
91 views

Is static init guaranteed NOT to run if class is not accessed

I know there are many topics and resources about this, but I'm wondering about a very specific question (and it might take a very long time to check all sources for a definite answer). I know that ...
0
votes
1answer
84 views

Servlet and static method

can someone take away me a doubt? I've a Servlet that is called by three different parts. Each of this parts represent a different operation, but using the same servlet and with the same parameters. ...
1
vote
2answers
83 views

How to use a non-static member function in Hasher?

I need to establish a hash table using a hasher different from the default one, so I write something like: class foo { public: ... private: struct myhasher { size_t operator() (myclass bar) { ...
0
votes
1answer
74 views

(php/oop) Method does not work in both directions

I have somme issue in PHP, I put this code in my index.php : $test = $wke ->sql ->insert("test") ->values(array("foo" => "bar")) ->go(); This ...
0
votes
1answer
388 views

php call class method from static method inside same class but non instantiated

php 5.3+ Sorry for the long question, but I want to learn this completely. I know I can't call a non-static same class method from inside a static method, without the class being instantiated as an ...
3
votes
1answer
192 views

How to store a Class variable, then call static methods of that class in Objective-C

So I want a class to be able to store a "Class" object, then later call the static methods of that class... Basically I have multiple classes that inherit a single class, so they all have the same ...
1
vote
1answer
818 views

Salesforce (SFDC) - public, static, global keywords - use one list for entire class?

I'm having a hard understanding using public, static, and global keywords with my variables and methods. Below is a snippet of my code. What I'm trying to do is upon page load, in my constructor ...
0
votes
1answer
95 views

Why isn't a protected setter property available from a static method?

I have a static helper clone method of a specific base type which doesn't allow me to set a base property setter. public static T Clone<T>(this T source, DomainKey cloneKey) where T : ...
0
votes
2answers
211 views

Calling a function from public static class

I am new to ASP.NET. I really need help on this one since I am stuck. I've done a lot of reading on google and couldn't figure what I did wrong. Error: CS0103: The name 'MyClass' does not exist ...
10
votes
6answers
535 views

Does using static methods and properties in PHP use less memory?

I'm working on a web application that sees dozens of concurrent users per second. I have a class that will be instantiated many times within the same page load. In that class, I have some properties ...
0
votes
1answer
71 views

Are static methods really necessary for a programming language? [closed]

Programming languages like C# or Java feature static methods, despite being heavily object oriented. I'm aware that there are many cases where static methods are used for performance or convenience ...
3
votes
4answers
368 views

Accessing page objects through static methods

I am using asp.net datepicker. Then executing a static event when a user clicks on a date through jquery like such: <script> $(document).ready(function () { ...
0
votes
2answers
161 views

having error while compiling with static method

Stated on my title, trying to compile my file with a static method inside my code. My computeCivIndex() is trying to get 5 inputs from user and do a calculation and return the float value back. ...
0
votes
1answer
63 views

generics and static

In this book that I'm using to brush up, there's a relationship between generic methods and the static keyword. It appears that generic methods require that keyword, but I don't see why it's required? ...
2
votes
4answers
125 views

implementing an accessor for a static variable in c++

I'm a CS student and right now we're learning about inheritance. For our assignments, the teacher gives us a main.cpp file and a class header. We're expected to create a .cpp implementation of the ...
0
votes
3answers
187 views

PHP: What if I call a static method in non-static way

I'm not pro in Object Oriented Programming and I got a silly question: class test { public static function doSomething($arg) { $foo = 'I ate your ' . $arg; return $foo; } } ...
-2
votes
3answers
147 views

C++ : how to define a Class just with static functions [closed]

I want to creat a C++ class which is incorporated only with static functions that I can use no matter what. I have create a .h file with the declarations and a .cpp file with the definitions. However, ...
0
votes
3answers
195 views

Basic Java Program: non-static method cannot be referenced from a static context

I'm a beginning programmer trying to learn the basics of java. Basically, the methods printBankSummary() and accrueInterestAllAccounts() in the bank class are giving me this problem. Here are the ...
0
votes
2answers
2k views

Groovy No signature of method calling Java library

as many questions begin, this is driving me crazy. I have a homegrown StarTeam java library. I have one static method like this: public static Label ...
2
votes
1answer
92 views

Making static methods explicitly reference the class

Python allows to call a static method not only from a class, but also from an instance: class X: @staticmethod def f(): print('f') x = X() X.f() x.f() # same as above This may be ...
0
votes
7answers
214 views

Can not make static reference to non static method?

So, in short. I have two classes. package rpg; public class Engine { public void main(String args[]) { Start.gameStart(); System.out.println(menuResult); } } and package ...
0
votes
2answers
132 views

sharing large datatable in the memory?

I have a few table frequently used by my website. for example, largest one is a location table which is holding massive static data. So anytime users come over my website, they do search for within ...
1
vote
1answer
352 views

vbscript static class variables/methods?

Is there a way to have one variable per class in vbscript? If not what is the best way to emulate it? Prefixing a global variable declared next to the class? Also is there a way to declare ...
0
votes
1answer
109 views

How to make button click from an static method in android

I have one Button "Submit", and i want to make 'submit.performclick' inside static method, i tried but i cant, help me to overcome this issue, and one more thing, inside that click action, there may ...
0
votes
1answer
53 views

is it possible to move string value from static string to non static String in android

is it possible to move string value from static string to non static String? i am trying to get String Value from static method to non static method, is it possible i tried with the following, ...
0
votes
2answers
670 views

how to call non static method from static method in android

I am facing a big problem in calling non static method from static method. This is my code Class SMS { public static void First_function() { SMS sms = new SMS(); ...
0
votes
1answer
77 views

High-order function or just object method access?

I'm working a bit with Scala and come up with a solution to some problem by passing a predicate to a filtering function. Not big deal but inside the predicate I used a call to a private function named ...
0
votes
0answers
66 views

Can't get data from a static array in HelperAdmin

I have a file/class::method (HelperAdmin.php/HelperAdmin::menuItem()) which extracts data from DB to generate main menu and submenu. I have to get this data after the menu being generated but I don't ...
1
vote
3answers
200 views

How to have an array of classes with static methods when using the closure compiler?

I'm having issues with an API I'm developing. I want to have an array of classes, each of which implement the same interface and have static methods. I will have another class that will cycle through ...
1
vote
4answers
752 views

Calling class staticmethod within the class body?

When I attempt to use a static method from within the body of the class, and define the static method using the built-in staticmethod function as a decorator, like this: class Klass(object): ...
1
vote
1answer
802 views

findViewById in static method in different class

Inside on of my android fragments I have the following simple check as to whether my app runs on a tablet or not (on a tablet I have 3 views open, view 2 and 3 are not seen on a phone, only the first ...
1
vote
1answer
76 views

Inputstring is null after being set in a static method, why?

I am uncertain of how memory is managed in my particular case... I have two methods: +(NSMutableDictionary *)loadPlist: (NSString*) name andErrorDesc: (NSString*) errorDesc ...
2
votes
5answers
445 views

thread safety of a static class

I want to create my own event system in my windows application in c#. To do this, i write the following class: internal class EventManager { private static List<EventRecord> s_listEvents = ...
-5
votes
3answers
203 views

can I have a non-static data member in a static class

I want to know if in a static class, all the methods and data member should be static or can I find a non static members?
5
votes
2answers
635 views

ASP.NET Static classes and asp.net sessions

Would someone be kind enough to explain or point to article that explains how the scope of static classes and methods interact with the scope of a ASP.NET user session. Here is the more specific ...
-1
votes
1answer
370 views

PHP syntax error: unexpected T_PAAMAYIM_NEKUDOTAYIM on Line 78

I checked all possible answers, but I'm sorry, I couldn't figure this out. I tried making the properties non-static but code pad shows the error on the line: $task = new ...

1 2 3 4 5 16