Tagged Questions
1
vote
1answer
54 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
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 = ...
-2
votes
2answers
124 views
Static member functions that are const with respect to static variables
In C++, how do you declare a static member function of a class to be const with respect to the static member variables of that class?
Consider the following simple example.
myclass.h:
class myclass
...
2
votes
1answer
136 views
Using static class methods in multi-threaded programming
I am building a webcrawler which is using two classes: a downloader class and an analyzer class. Due to my design of the program I had some methods which I outsourced to a static class named utils ...
0
votes
1answer
147 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
...
-2
votes
1answer
92 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 ...
2
votes
1answer
65 views
Global variable gets different values when used in different static methods
I have the following class that implements static methods that must use a single global array. It is defined as such:
//Defined in LockTrack.h file
enum LOCK_ID{
LOCKID_0,
LOCKID_1,
...
0
votes
2answers
99 views
C++ undefined reference (static member) [duplicate]
Possible Duplicate:
C++: undefined reference to static class member
Logger.h:
class Logger {
private:
Logger();
static void log(const string& tag, const string& msg, int ...
0
votes
2answers
157 views
How to get SharedPreferences from non-Context class and without using non-final static variables?
I need to get a reference to the shared prefs from inside an abstract class called A that does not extend anything.
I cannot pass a Context object to this class to get the shared prefs because being ...
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 ...
-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?
1
vote
5answers
166 views
What kind of member access do friend and static member functions have?
I'm wondering what kind of class member access friend functions and static member functions have for class objects. Specifically, what the differences are and why to use one over the other. It's my ...
3
votes
1answer
93 views
Disabling an if-Condition for one static method call by setting a static field
We have got a class, let it be named AttributeUpdater in our project handling the copying of values from one entity to another. The core method traverses through the attributes of an entity and copies ...
0
votes
3answers
133 views
Static method over the class itself?
I have a question that was in an older test and I need to know the answer for practicing.
We have the following Class:
public class First{
private int num1 = 0;
private int num2 = 0;
...
2
votes
3answers
149 views
D: Inheriting static variables, differentiating by class?
I'm working on a situation where I'd like to have a certain base class that defines a static associative array and static functions that work with it, and then duplicate this functionality in classes ...
5
votes
2answers
134 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 ...
0
votes
5answers
125 views
Why is it better to use class name instead of objects to access class methods or variables in Java?
I was reading Code Conventions for Java from http://www.oracle.com/technetwork/java/javase/documentation/codeconventions-137265.html#587.
In that, they have mentioned that we should avoid the use of ...
3
votes
2answers
430 views
Static variables in a Javascript class
Is there a correct way to create private static javascript variables (and functions) that do not change no matter how many times you create new Obj?
This is what I tried and it seems to work:
var ...
1
vote
3answers
184 views
PHP combined static and non-static class vs 2 separate classes
I have a PHP class for building HTML tags. Each HTML tag becomes of new instance. I have some utility methods needed within the class for handling certain functional stuff like escaping attributes and ...
0
votes
1answer
72 views
How to define a static member of a class in the function?
Here I have:
class X {
public:
static int shared_arr[];
static void alloc_and_init() {
// Since any static variables defined in the function are allocated some space.
// So ...
1
vote
4answers
252 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 ...
7
votes
2answers
1k views
Static block vs static method - initializing static fields
Out of curiosity, I measured the performance between static block and static method initializer. First, I implemented the above mentioned methods in two separate java classes, like so:
First:
class ...
0
votes
3answers
79 views
Make sure data does not get cleaned up in a static class
Is there a way to have a static class have static data that does not clear itself at the end of the function call?
i.e. given:
static class Class1
{
static int[] _array;
static Class1()
{
...
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
5answers
2k views
Using Static method and variables - Good vs Bad
I am developing C# and asp.net web application.
I have general class called utilities, I have lot of public and static variables in this public utilities class.
Since this number is gradually ...
0
votes
2answers
135 views
Sending a class instance through a static reference member in a small chat client
I am building a small chat-room app in Java.
What I am trying to do here is to send the current class ClientGUI instance (this) through a static ClientGUI reference member. The ServerApplication ...
11
votes
8answers
12k views
C# Static variables - scope and persistence
I just did a little experiment:
public abstract class MyClass
{
private static int myInt = 0;
public static int Foo()
{
return myInt;
}
public static int Foo(int n)
{
myInt = n;
...
0
votes
2answers
357 views
C# Caching values between static calls
I have an abstract class which runs a fairly computationally intensive series of static functions inside several nested loops.
In a small number of these loops, I need to obtain a list of dates which ...
0
votes
2answers
475 views
static variables initialization order between many classes
c.h
class C{
static string s;
}
c.cpp
string C::s=D::staticMethod();
d.h
class D{
static string s;
static string staticMethod();
}
d.cpp
string D::s("some string");
string ...
0
votes
3answers
588 views
C# static class and data members question
I am not sure how to implement what I have in mind using C# .Net 3.5. I have a static class called Common which contains common methods. One of the method is PrepareReportParameters. This method ...
4
votes
9answers
679 views
What is a possible alternative to these static variables?
I have created a simple GUI engine which I plan to use in a game.
The issue I am having is understanding how to instance a class that will be accessed in multiple stack frames without being static ...
4
votes
1answer
2k views
PHP Can static:: replace self::?
I am a little confused with this matter. I am designing an ORM class that tries to behave very similarly to ActiveRecord in ruby on rails, but that's beside the point.
What I'm trying to say is that ...
0
votes
0answers
219 views
When to use static classes and members?
Is it a good practice to use Static Classes / Methods?
Adding Static members makes unit testing/mocking difficult and not a good SOLID oop practice.
I would recommend use of static only for ...
1
vote
4answers
392 views
A class that only has static data and methods to access these data. How to implement that properly?
I know that is a beginner's question. I'm new to java and and also to programming in general.
Say I got a class that has only static data, example:
class Foo {
private static int x; }
I want to ...
2
votes
3answers
958 views
Trying to use static methods/members
I've been spoilt with C# coding the last few years and now I'm back onto C++ and finding that I'm having trouble with stuff that is supposed to be simple. I'm using a third party library for gamedev ...
1
vote
1answer
233 views
How to force static class to implement specific methods?
I need to create a set of static classes and all of them need to implement the same methods. I want to find a way to force them so.
I understand that static classes cannot derive anything other than ...
0
votes
1answer
1k views
java static vs non-static using this and event handlers
I'm trying to learn about java's event handlers and keep getting errors with type type (static/non-static) methods I create. Some code I'm trying to write looks like:
import javax.swing.*;
import ...
3
votes
9answers
1k views
Static variables and methods
I ran across a class that was set up like this:
public class MyClass {
private static boolean started = false;
private MyClass(){
}
public static void doSomething(){
if(started){
...


