Tagged Questions
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
1answer
96 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 ...
0
votes
2answers
57 views
Call static member from inherited class instance
I have two classes, Y and X, and Y holds some static members -- which I'm trying to access via an X instance:
template <class T>
class Y {
public:
Y() {
i = 0;
v = ...
0
votes
3answers
52 views
Declaring a non-static class as static
I have a static class called A:
public static class A
{
}
And another class called B, which is not static:
public class B
{
}
After that, I declared the non-static class B as static:
public ...
1
vote
2answers
58 views
Difference of static const and static when returning a static variable
It is best explained in code:
static Unit& None() { static Unit none(....); return none;}
What is the difference to?
static const Unit& None() { static Unit none(....); return none;}
2
votes
3answers
89 views
How do I use Static Objects and Methods!? C++ Frustration
So I've been working on my what I thought would be quick and easy project for a couple hours now and I can't get it to work! It's making me frustrated lol I've got to be close, but maybe I'm not.
...
0
votes
1answer
298 views
Declaring static method in Singleton spring bean
We are running into memory leak issue and we suspect that below code could be reason, we have a static method in a singleton class and doubt that its causing memory leak while its being referenced ...
2
votes
4answers
179 views
static variable inside static method doesn't change
I want to create a class which has a static method that returns a reference to a static variable(which is declared inside the method). What I want is when calling the method to get the reference of ...
0
votes
2answers
478 views
Change textBox.Text from static method
I am running server/client communication.
Now i want to write something on the server textBox and show it on the client textBox so I am sending a message from the server to the client which takes it ...
-1
votes
2answers
165 views
Issue with static member function and derived class
I have a class with static member function (which is necessary). To be able to use non-static members of the class. I defined a Static_This which is a pointer to the class.
template<class T>
...
0
votes
4answers
78 views
When we can have class and method as static? [closed]
When we can have class and method as static?
Anybody please help me with some example...
2
votes
1answer
93 views
Python3: check if method is static
Simmilar question (related with Python2: Python: check if method is static)
Lets concider following class definition:
class A:
def f(self):
return 'this is f'
@staticmethod
def g():
...
0
votes
1answer
159 views
undefined reference to `Static Class Member variable inside Static member function'
I am actually trying to implement a simulation of Paging, in my memory manager, i tried create a static page table, but its giving reference error when i try to print it.
#ifndef MEMORYMANAGER_H
...
1
vote
2answers
471 views
Call static method in static class from asp page
When I call static method from asp page I got this Compilation Error:
CS0103: The name 'Tudo' does not exist in the current context
Line 10: <script src="<%= Tudo.getFromDefinicao("winJS") ...
0
votes
2answers
110 views
Java: Instance ArrayList Derived From Other ArrayList in Static Method
The issue with my code is that when I call generateCSV() below, the output of the ArrayList is not correct. It is replacing all of the instances with only the last instance to be instantiated, i.e. ...
-2
votes
1answer
93 views
OO PHP static keyword, should I use it? [closed]
I know this has been covered in past but I still have some doubts.
I'm writing script for fb and I have 3 objects that I'll be using through all classes. I'm Wondering if there is any advantage of ...
0
votes
1answer
57 views
python static class with static method that uses self?
I'm doing a database insert script in pycassa. I want to set up a public static class that defines some variables that will get used a lot by other functions later on. Heres what I have...
class ...
9
votes
5answers
160 views
why doesn't this code throw NullPointerException
I was just discussing about calling static methods using class name with my friend and tried out this code and expected it to throw NPE at runtime.but as it turn out it dint. i just want to understand ...
0
votes
3answers
113 views
Compilation Error related
Given:
11. public static void test(String str) {
12. int check = 4;
13. if (check = str.length()) {
14. System.out.print(str.charAt(check -= 1) +", ");
15. } else {
16. System.out.print(str.charAt(0) ...
5
votes
1answer
232 views
Why is a static member function _declared_ static, but _defined_ otherwise in C++?
Here's a minimal working example:
A.h:
class A{
static int a_member_function();
};
A.cpp
#include "A.h"
int A::a_member_function(){return 5;}
int main(){ return 1;}
This code compiles ...
-4
votes
3answers
141 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 ...
-5
votes
3answers
206 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?
-1
votes
1answer
377 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 ...
0
votes
2answers
176 views
Static keyword usage php
Let say I have a class like the following:
class MyClass {
public function __construct($str) {
// do some stuff including:
$str = self::getIP($str);
}
private static function ...
2
votes
3answers
416 views
Access static method from non static class possible in java and not in c#
Access static method from non static class with object.
It is not possible in C#. Where it is done by JAVA.
How it works?
example of java
/**
* Access static member of the class through object.
*/
...
0
votes
1answer
362 views
Calling a Static Method with AsyncTask/ProgressDialog of a class
So I'm relatively new to Android (and Java). I've made a class which has your usual AsyncTask with a ProgressDialog in a static method because I want to call it from multiple Activities.
public class ...
2
votes
3answers
4k views
Difference between Static methods and Instance methods
I was just reading over the text given to me in my textbook and I'm not really sure I understand what it is saying. It's basically telling me that static methods or class methods include the ...
2
votes
2answers
158 views
Java: ExceptionInInitializerError on program startup
On start up, my program immediately throw an ExceptionInInitializerError. The source is from this method:
public static void errorMessage(String input) {
System.err.println("[ERROR] " + ...
1
vote
3answers
157 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 ...
3
votes
5answers
179 views
How the static class's static method will know the caller?
Imagine I have a static class and a static method inside that. And it has to be accessed by 10 different classes. But how the static class will know who has called it :(
It was an interview ...
2
votes
5answers
159 views
If I create a static class in C#, will any methods inside be considered static as well, regardless of whether they're explicitly declared as static? [duplicate]
Possible Duplicate:
C#.NET - Why do members of a static class need to be declared as static? Why isn't it just implicit?
I am getting an interesting error, in that when I call a method ...
5
votes
2answers
135 views
How many instances are there, of static variables declared in a method?
In this case, there should be only one or zero instances of the static variable. It depends whether f() has been called or not.
void f()
{
static int a;
}
But how many instances of the static ...
2
votes
4answers
249 views
Why can't implementing classes define an overriding method as static?
I'm confused why the following is not allowed:
public interface MyInterface {
MyInterface getInstance(String name);
}
public class MyImplementation implements MyInterface {
public ...
1
vote
2answers
84 views
why is static needed here
I am using curl library which returns data to me through a callback function with the prototype below
size_t write_data(void * data, size_t size, size_t nmemb, void * userpointer);
I noticed that ...
1
vote
4answers
173 views
Correct design for a validation class?
I'd like to create a class that will validate form input (please no comments about reinventing the wheel).
I'm thinking it makes more sense to have a class with static validation methods, rather than ...
2
votes
3answers
883 views
Are local variables in static methods also static?
I am wondering do all the local variables become static if we declare them in a static method ?
for example:
public static void A(){
int x [] = {3,2};
changeX(x);
for ...
0
votes
1answer
322 views
Zend Model Class - Select queries being declared as static methods
I'm looking at some code I have inherited.
In all the Model classes - any method that does a "Select" query has been declared as static where as the "insert", "update", "delete" are not declared as ...
1
vote
2answers
92 views
Modifying a globally defined static variable from a static method's mouse listener
I'm trying to modify the following globally defined variable:
static int players;
from the following method:
public static void selectPlayers() {
JButton player1 = new JButton("1 Player");
...
1
vote
1answer
280 views
Java accessing instance variables
How can I make the object array named rooms accessible to the static method at the end called retrieveRoom(); I tryed public static Rooms rooms[] = new Rooms[3]. But I am just getting errors from ...
2
votes
1answer
101 views
Need explanation on this code with polymorphism
I stumbled uppon this code and I am quite confused on how it compiles since one of the function from A refers to static B. Also what it's suppose to do.
where B is derived from A.
In A.h file
...
8
votes
2answers
163 views
Can't use “static” keyword on a static method in a c++ class implementation file (.cpp)
Consider:
// In Vector2.h
class Vector2
{
public:
// returns the degrees in radians
static double calcDir(double x, double y);
}
// In Vector2.cpp
double ...
1
vote
4answers
255 views
Static methods and variables
I do know that in java static methods can only use static variables and static methods and but non static methods can use non static variables and methods. is there any explanation why static methods ...
-4
votes
4answers
112 views
can you have static and instance methods in the same c# or c++ class ?
Can you have static and instance methods in the same c# or c++ class ?
If yes, what would be the use of having both, if no why not ?
0
votes
6answers
393 views
Unable to call static method of data manager class in the code behind page of main aspx file
I am trying to do simple data entry. I have my aspx file for input and data manager file in App_Code folder to interact with data entity. I have "static" add method but I cant add the model file with ...
0
votes
4answers
150 views
Why do static classes crash my robot?
I have made the static class below so any class may access any of my lejos robot's sensor methods without me having to make an instance for each class.
However whenever I call a method such as ...
0
votes
3answers
107 views
Static Method Call
I have one class which has one static method as shown below.
class A
{
A()
{
Initialize();
}
static void fm()
{
;
}
void Initialize()
{
;
}
}
Now in the program ...
0
votes
2answers
2k views
Static Method Memory Allocation
We have two classifications heap and stack . When a object is created, memory for object is stored in heap. What if the class has static methods ,which can be called using class name. If object is ...
3
votes
4answers
211 views
Deciding to make a C# class static
If I have a Utilities.cs class in C#, which contains only static methods
e.g.
public static string DoSomething()
{
return "something";
}
Should I make the class itself static?
public static ...
0
votes
1answer
31 views
Should data that is the same across all class instantiations be held in a separate, static class?
If I have a class that will be instantiated that needs to reference data and/or functions that will be the same for each class. How should this be handled to follow proper programming practices
...
1
vote
2answers
223 views
PHP - Zend Framework - Using static methods for data access
I've been reading online about the pros and cons of using static methods for accessing data from the database. I have a LAMP based site built on Zend framework.
Some say in terms of performance - ...


