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.
0
votes
1answer
21 views
Calling a superclass method from a subclass in python
I was wondering if a subclass could call its parent static method, and tested it : it works like I hoped!
class A(object):
@classmethod
def static(cls):
print('act on '+cls.__name__)
...
0
votes
0answers
21 views
How to test if a method is thread safe?
sometime happen to choose between to make a static or instance method.
There is some code snippet to test if the static method is thread safe?
In this case, I would like to make a static method that ...
0
votes
0answers
21 views
Can I add (static) class methods using EmberJS mixins
In the standard ember mixin example we add instance methods/properties: http://emberjs.com/api/classes/Ember.Mixin.html
With reopenClass we can add class methods (static methods), giving us something ...
0
votes
3answers
40 views
new object is created or not?
I am reading Effective Java by Joshua Bloch. It confuses me in the item 1, where it states
A second advantage of static factory method is that, unlike constructors, they are not required to create ...
3
votes
5answers
120 views
Overriding static methods in java
i know that we cannot override static methods in java. I read here why:
but can someone explain the following code:
class A {
public static void a() {
System.out.println("A.a()");
}
...
0
votes
0answers
35 views
Can we use static functions in multithreading environment?
I'm new to Java and Selenium. In selenium test I want to check whether element is displayed before performing any action on it. I have written static function to check for element existence. I'll be ...
3
votes
4answers
58 views
static member functions inheritence
I am new to C++ programming, i have a got doubt while doing some C++ programs, that is how to achieve dynamic binding for static member function. dynamic binding of normal member functions can be ...
0
votes
2answers
67 views
How do I make a static class thread-safe?
I have a simple simple logging class that is STATIC. However, it's definitely not thread safe as every call attempts to write to the same file. I get these exceptions:
The process cannot access the ...
0
votes
1answer
44 views
nodejs restify error — callback serving request treated as static function
I am initiating a node js web server with restify module.
server = restify.createServer();
server.post('/getData', DataManager.getData);
Handler for /getData path looks like this:-
...
0
votes
2answers
43 views
is it possible/correct for a class (not an instance) to act as a delegate?
I'm building the iOS app that is to act as a client for a REST server. So far I've been handling my all my requests in a very simple manner. Whenever I needed to make a call, I'd do something like:
...
-2
votes
4answers
85 views
Trying to count blank spaces in a string recursively?
EDIT: Really sorry, I mean Java! As for what I think, I would say the first contains if statement is for s == null or length 0, but I'm confused as to what to put in the
return ...
-4
votes
0answers
64 views
Static functions in C? [closed]
Please some explain me Why, When, Where we use Static functions in C.
Give some example program to proof your answers.
Advantages of Static function in C.
0
votes
1answer
42 views
Why do I get an “Unresolved Externals” when calling a static attribute? Visual C++
although there are a lot of answers to this topic, I still have a problem.
I want, like everybody, to implement a Singleton pattern. I tried with this:
class Factory
{
private:
Factory(void);
...
0
votes
1answer
24 views
Tkinter menu command action carried out before calling, Why?
The following is producing a Tkinter menu with one label "do something". Running the script produces the "done" output immediately, which means before even clicking on the "do something" menu label. ...
-1
votes
3answers
76 views
Checking for this == NULL in a member-function without invoking undefined behaviour
Suppose I have a C++ class and I would like to have a recursive member-function which is called with instances items of the class, for example
// the eplicit "this" is just for clarity in the ...
0
votes
3answers
66 views
findViewById inside a Static Method
I have this static method:
public static void displayLevelUp(int level, Context context) {
LayoutInflater inflater = (LayoutInflater) context
...
2
votes
3answers
96 views
Simulating class properties in (Win32) Delphi
In Simulating class properties in (Win32) Delphi, there's this trick for defining 'class properties' as well as class methods:
unit myObjectUnit;
interface
type
TMyObject = Class
private
...
4
votes
3answers
98 views
Should a Model class (in MVC) use static method or instance method?
In term of a MVC framework, should I use a static method or instance method?
e.g. Assume a Users class, and a method getUserById() which return a User class, which one is better choice?
Users users ...
2
votes
4answers
115 views
Java: Calling a static method in the main() method
I am supposed to do the following:
Write a Java application (Client) program with a static method called generateEmployees( ) that returns a random list of 10 different types of Employee objects. ...
3
votes
3answers
77 views
Pointers to static methods in Python
Why is it that in the following code, using a class variable as a method pointer results in unbound method error, while using an ordinary variable works fine:
class Cmd:
cmd = None
...
0
votes
1answer
91 views
Trouble with static and non-static
I'm new at Java and following a beginners course right now. Very nice, i'm trying all kinds of stuff but now i'm stuck.
This piece of code doesn't work. It should output the input in reverse order (by ...
-6
votes
1answer
90 views
Difference between static variable and global variable in C++ in terms of Memory Management? [closed]
Difference between static variable and global variable in C++ in terms of Memory Management?
Difference between static method and global method in C++?
i know the concepts, but still for clear ...
5
votes
3answers
69 views
Why use classmethod instead of staticmethod? [duplicate]
I know what they do and I've seen many examples of both, but I haven't found a single example where I would have to use classmethod instead of replacing it with a staticmethod.
The most common ...
1
vote
4answers
83 views
Call static function in C++
I am writing a code to work with vectors in C++.
I've got 3 files: main.cpp, Vektor.cpp and Vektor.h
Now I want to call a static funktion in main, which is implemented in Vektor.cpp and declarated in ...
0
votes
2answers
33 views
Can't check instance variable values in static method in Eclipse debugger
I want to keep track of values of an instance variable, and my breakpoint starts at a static method. I can't check the instance variable value. Is there a way to do that? I searched over google, but ...
0
votes
1answer
54 views
PHP call method of class where class name is in field of other class
I have a CodeIgniter php setup and enhanced it with RESTful capabilities.
I have the following structure
base.php (this is the base controller class
class Base {
private $model
public ...
8
votes
3answers
124 views
Java - Generic Static Methods
I have been trying to understand whether it is possible to make a method which infers a generic type based on the return class and calls a static method of that generic type.
i.e. Below I create 2 ...
0
votes
1answer
102 views
Why doesn't my program call my methods?
java methods statithing but I can't seem to get my while statement on line 56 to call my methods properly. Is there something that I'm doing wrong? I am very new to Java so any sort of help would be ...
0
votes
1answer
29 views
Groovy: How to get Type on which a static method is called?
When a static method defined on Base class is called using Child class, How to find it was called on Child class type?:
class Base {
static def method(){
println "class on which this ...
3
votes
4answers
54 views
Does the order of extern and static matter?
Comparing two files (old and new), I see:
private extern static void SipShowIM(uint dwFlag);
...in the old file, and:
private static extern void SipShowIM(uint dwFlag);
...in the new file.
Why ...
-1
votes
1answer
94 views
Java - Difference Between 'static' and 'public static' Method Declaration [duplicate]
I'm reviewing an existing code base and finding methods that are declared as both 'static' and 'public static' in the same class. The 'public static' declaration seems, by my understanding, to be ...
0
votes
3answers
48 views
Is there a way to find out if a method is static or not?
Is there a way to find out if a method is static or not?
My reason for needing to know:
I call static methods outside of any instantiation context. Non-static methods can't be called then, since they ...
1
vote
0answers
31 views
How to register a client side script in a static web method?
I want to register a client side script in a static web method. Here is my codes:
public static class ScriptRegister
{
public static void RegisterScript(Page page, string script)
{
...
1
vote
4answers
166 views
Is it better to define methods as static?
Is there a memory or performance difference to define and use methods statically instead of using methods inside of instantiated classes? Does the method itself hog memory with each instance of the ...
0
votes
0answers
21 views
Call non static function from another class.
I have this class:
public final class c_sql
which inside is using
private final class Op extends AsyncTaskWithProgressBar
and another class
public final class Sinc extends Fragment
with ...
4
votes
2answers
104 views
Instance configuration in Object Oriented PHP
I'm searching the most efficent way to apply a set of properties(configuration) to a newly created instance. My first objective is to keep the application object oriented, the second one is the ...
0
votes
1answer
20 views
Static validation methods WCF
If I have some WCF methods like
GetEmployeeDetailsResponse GetEmployeeDetails(GetEmployeeDetailsRequest request)
GetCustomerDetailsResponse GetEmployeeDetails(GetCustomerDetailsRequest request)
and ...
1
vote
1answer
81 views
Handle a paste event in c#
I've created a static class numeric Textbox but i wan't to control what the users paste in te textbox.
For handling paste Event i use textchanged event:
static public void ...
0
votes
2answers
73 views
Static method (which isn't class method) in objective C
While reading THIS question and accepted answer for the question, I was unable to get the difference between these two types of methods. Actually got the point by reading the example, but then, I was ...
1
vote
1answer
57 views
Behavior of static methods/variables change after adding instance variable in Java
This isn't so much of a problem as it is a question. I have several classes that inherit the following abstract class:
public abstract class PixelEditorWindow {
protected static int windowHeight, ...
0
votes
1answer
157 views
Call Static Method of a class from Razor View on jQuery link Click and also passing Strongly typed viewbag
I am trying to pass Strongly Typed ViewBag from Controller to View, then from View call a static method on jquery link click which uses the View bag property as paramater.
In Controller, I have
...
1
vote
1answer
49 views
Static richbox in C#
How can I make a richtextbox static in a form ( C#) in order to call it in other class and define a static method who can change it?
0
votes
5answers
129 views
Is there a way to call a non-static method from a static method?
Here's what I have.
public static void Person_home_phone_TextChanged(object sender, EventArgs e) { ... }
Is there any way to access non-static methods from the same or another class from inside ...
0
votes
1answer
95 views
C++ static method needed
I have a method run() member of MyClass. At compilation, i get
Error 3 error C2662: 'MyClass::run' :
cannot convert 'this' pointer from 'const MyClass' to 'MyClass&'
ITOH, if I put ...
-3
votes
2answers
71 views
Calling static function on class in C++ [duplicate]
I am writing a lot of java now, so I am getting confused with the java static methods and c++ static functions.
in java, you can call a static methods from a class, and I frequently use/see it, for ...
1
vote
3answers
97 views
Alternative to virtual static functions in c++?
In the header file .hpp:
class Base{
public:
static /*Some Return Type*/ func(/*Some Datatype*/);
}
class Derived1 public Base{
public:
...
0
votes
2answers
59 views
Declaring a private method static
Can there ever be a good reason to declare a private method static if no other methods within the class that are public static call it? Even if the method does not require any instance variables, ...
0
votes
1answer
45 views
Deallocate and re-instantiate new a singleton
I want to de-allocate the memory from the original singleton object and create a new one with another method.
public sealed class ObjectZ {
static readonly ObjectZ _instance = new ObjectZ();
...
2
votes
1answer
102 views
Get non-static method name inside static method
I am trying to do something rather simple but not sure if there's any way around simply creating a dummy instance of my class.
I am trying to simply get the method name of a non-static method using ...
0
votes
2answers
83 views
NetworkOnMainThreadException in IntentService
I am making network calls from an IntentService but still receiving a NetworkOnMainThreadException. My understanding is that an IntentService always runs on a worker thread, so I'm suprised to see ...







