In object oriented programming, a static variable is a variable which belongs to the class and not to object(instance) & a single copy to be shared by all instances of the class.

learn more… | top users | synonyms

4
votes
3answers
37 views

Using class name from a static constant statically in PHP

I have the class name Car stored as a static variable in constants. I would like to use this constant to call the function a. One options is to use an intermediate variable $tmp. I could then call ...
0
votes
3answers
68 views

Concurrency With Static Variables

Maybe its too late, but I have a static class for the sake of global variables in my winforms application. Now, I am realizing this may cause issues. The question is: "With the static class variables ...
-2
votes
1answer
16 views

JAVA static variables ,overriding and overloading [closed]

Why do we use overloading and overriding? Why do we use static variables? In java
0
votes
2answers
29 views

Static variables cause crash in OSX network kext

In a mac OS X network kernel extension, I have noticed that if I have a statically allocated buffer rather than a dynamic one, this leads to kernel panic when calling API functions such as printf() or ...
0
votes
1answer
38 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); ...
2
votes
1answer
46 views

What is different between static variable and variable in class extension?

Static variable "Declaring a variable static limits its scope to just the class—and to just the part of the class that’s implemented in the file" (Apple doc). And I think a variable was defined in ...
0
votes
2answers
62 views

C++ static variable produces a fatal error LNK1120: 1 unresolved externals in Visual Studio

I am new to C++ and I am trying to learn the different uses of static keyword, I read that one of them is to define a static variable inside a class and call it using the scope operator. I tried to ...
1
vote
3answers
35 views

possible to hide function property so it can not be seen outside the function?

I'm writing a function to store canvas patterns. If a canvas pattern is requested and it exists, a reference to the canvas is returned, else the canvas is created first and then the reference is ...
0
votes
2answers
43 views

static variable cpp do not want to change

FileA.hpp: static int a; void change(int); FileA.cpp #include "FileA.hpp" void change(int x) { a = x; } main.cpp #include "FileA.hpp" #include <cstdlib> #include <iostream> int ...
1
vote
2answers
47 views

static variables reinitializing themselves when moving from one activity to other

I am using a public class name Constants in which I have static variables. /* * Flags */ public static boolean gotCourse = false; public static boolean quizTaken = false; I am changing these ...
0
votes
0answers
71 views

Local static variable initialization - bug of Visual Studio 2010?

I recently debugged some legacy code like this: template<size_t count> struct SomeData { char m_data[count]; }; template<> struct SomeData<0> { }; template<int n> struct ...
0
votes
4answers
131 views

Static variable Behaviour in Asp.Net

I have a OperationHelper class which is as follows: public class OperationHelper { /// <summary> /// Gets or sets the Add Operation value /// </summary> ...
-9
votes
1answer
39 views

Change the value of a static variable [duplicate]

How can I change the value of a static variable in Objective-C?
-4
votes
1answer
314 views

Difference between static variables and static memory allocation? [closed]

I was told by an experienced C developer that the concept of Static variables was not the same as that of static memory allocation. Is this correct? If so, what is the difference between the two ...
-1
votes
2answers
104 views

Static vs non-static variable C++

class Expression { private: ToStringDisplay* toString; public: ...... }; // Some code if (toString == NULL) // do something When I debugged, toString referred to an ...
0
votes
3answers
80 views

Changing a variable in another class without a static variable?

in the program that I am writing at the moment, I have 2 JFrames (each in a different class, each has a different purpose, however you could consider the widget frame to be a slave of some sort), one ...
0
votes
1answer
65 views

Is it correct to use objc_setAssociatedObject for class object?

Is it correct to use objc_setAssociatedObject for class object? We often simulate class variables using static variables like that: Objective C Static Class Level variables but, can we use Associated ...
0
votes
0answers
70 views

Access a static variable in jsp from another jsp

I have two different jsp(like A.jsp & B.jsp) and these are not have relation(like include,etc). In A.jsp I have a static boolean named isAccess. Can I access A.isAccess from B.jsp? If yes, please ...
-1
votes
4answers
59 views

Python static variable resolution [closed]

I am trying to create a counter of all instances created for a particular class. It is clear that my code does not increment self.__class__.counter past 1. What am I doing wrong? class ...
0
votes
0answers
70 views

Drag and Drop Table to Class for Java

I am making a scheduler and I am having a problem on making a separate table for my system. First of all, the original code was embedded inside the system and I wanna make another version, of which ...
6
votes
4answers
104 views

Static variable order [duplicate]

I have aproblem with the order of static variable declaration in C# When i run this code: static class Program { private static int v1 = 15; private static int v2 = v1; static void ...
0
votes
2answers
60 views

Can't access Public variable Outside Jar in Java Swing

I have a public static variable in class A this class is defined in Jar A. I am try to call this variable in Class B in Jar B.The source code of Jar A is attached as a relative path to jar B.Before ...
0
votes
2answers
38 views

Static variables in ProgressListener

I have the following code in my Weblogic portal app: public class RoutesProgressListener implements ProgressListener { private static long bytesTransferred = 0; private static long fileSize = -100; ...
1
vote
1answer
84 views

Why can't I use “name” as static attribute in javascript / nodeJS

I couldn't figure out this, but maybe anyone can help me: When I define a javascript class and try to add a static attribute "name", I can't use "name" afterwards. var MyClass = function() { ...
2
votes
1answer
47 views

Setting array values to be static

Using java, is there a way to set certain values in an array to be static/uneditable? I'm trying to make a sudoku game, so I want the initial numbers to be set so the program can't change them, but ...
-2
votes
1answer
159 views

c Static float error: ‘????’ redeclared as different kind of symbol

unable to compile a c program, problem with symbol redefinition. Have tried various variable data type definitions, cannot understand what is going on here regarding float and static float. Have given ...
0
votes
0answers
109 views

Reset Static variables in IIS

I have assigned value for static variable in Application start event of ASP.NET MVC application. protected void Application_Start() { public static list<string> versionInfo = ...
2
votes
4answers
82 views

Determine which subclass to choose by accessing static variables from the Class object

I am trying to implement an interface in Java to use different types of databases for one application. My though was to create an abstract class with the common interface and two static variables ...
0
votes
4answers
145 views

Python Instantiate Class Within Class Definition

I am attempting to add a variable to a class that holds instances to the class. The following is a shortened version of my code. class Classy : def __init__(self) : self.hi = "HI!" # ...
3
votes
4answers
102 views

Is a static member variable common for all C# generic instantiations?

In C# I have a generic class: public class MyGeneric<ParameterClass> where ParameterClass: MyGenericParameterClass, new() { public static int Variable; } Now in C++ if I instantiated a ...
0
votes
1answer
56 views

How to change a static boolean variable in a button action listener?

public class Main { private static boolean SaH=false,LaE=false; public static void main(String[] args{ //other coding choice1.addActionListener( new ...
0
votes
0answers
84 views

Static variable declaration in JNI

I have a C Image algorithm code in JNI C part. I`ve done the data acquiring from camera in JNI and it works fine. However, when I tried to use my image algorithm for further use. and it crashes on ...
0
votes
0answers
152 views

Static variable change does not take effect, nodeJS

I'm writing a little nodeJS based email server. I have a Request object, and in it there's one static variable that stores all the users and is defined like so: Request.publicMemory = new Object(); ...
-1
votes
4answers
273 views

Can static function access non-static variables in php? [closed]

<?php class Stat { public $var1='H'; public static $staticVar = 'Static var'; static function check() { echo $this->var1; ...
-4
votes
3answers
112 views

explaining the behavior of this “static variable” in C [closed]

I'm reading "hacking, The Art of Exploitation" book, and this code sample really confuses me. It's within the context of Global Variable Scope: #include <stdio.h> void function() { // An ...
0
votes
3answers
174 views

Why static variable of my android application sometimes return null?

I am trying to get value from SharedPreferences and storing it inside of an static variable. The problem is sometimes I am getting null value from static variable but SharedPreferences has value. I ...
-1
votes
2answers
378 views

Need Sugestion: database connection class to connect to mysql using C#

First of all, I apologize for my bad English. I'm really new in the C# world and I've using PHP before. I've created database connection class just to open, close, and make a connection string. I ...
2
votes
2answers
167 views

Scala equivalent of C++ static variable in a function

I am quite new to Scala and stumbled across following problem: what is Scala equivalent of function's static variable ? void foo() { static int x = 5; x++; printf("%d", x); } EDIT: ...
1
vote
1answer
49 views

How do I access static variables within a class without class names in PHP?

Is there any way to access a static variable of a PHP class without using the class prefix? Example: class A { protected static $x = "blahblah"; public static function p() { ...
1
vote
7answers
242 views

Alternative Session/static vars ASP.NET/C#

I'd like to know if there is a valid Session or static in .NET environment. What I need is a variable to store some data that maintans its value, accessible through all ASP.NET pages / C# forms but ...
6
votes
2answers
69 views

assigning static var to non-static var, method to return the values not working

I'm new to PHP and practicing using static variables. I decided to grab an example that I learnt from C++ and re-write it for PHP (example from the bottom of this article). There's a class with two ...
2
votes
1answer
124 views

Objective-C – access extern const with a string containing its name?

I have a constant defined out of class in SomeClass.h: extern NSString *const SCImportantString; @interface SomeClass @end And assign it in SomeClass.m: NSString *const SCImportantString = @"All ...
1
vote
1answer
120 views

What happens to static variables in Android 4.2 for Multi-User environment

The way Google said how multi user will work is that: "Each user on a device has his or her own set of accounts, apps, system settings, files, and any other user-associated data." I think/believe ...
5
votes
6answers
164 views

singleton and public static variable Java

I have 2 options : 1. Singleton Pattern class Singleton{ private static Singleton singleton = null; public static synchronized Singleton getInstance(){ if(singleton == null){ ...
1
vote
0answers
121 views

How do I retrieve variables from HashMap in Java? [closed]

I want to retrieve name, name2 and cmdname from readCommandList method in determineCommands method. How do I do it? public class TestXML{ private static Map<String, String[]> commands = null; ...
0
votes
3answers
180 views

How to make a variable global in java

In multi player online games. how to keep a variable global? we are developing an online game and we need a global variable.There will be one server and multiple clients.how can we keep a common ...
3
votes
1answer
150 views

Joomla 3.0 and modules.php: static variable(2d) and caching - output error

I have the following problem: I use Joomla 3.0.1 and my own developed Template(with bootstrap). When I turn the normal Joomla caching to on, my site has output errors. These errors are regarding to ...
2
votes
4answers
156 views

Seeding rand() for a C++ class

I am working on a C++ class that uses a rand() in the constructor. I would really like for this class to take care of itself in pretty much every way, but I'm not sure where to seed rand(). If I ...
1
vote
1answer
345 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 ...
1
vote
1answer
89 views

C static variables in python multi-process

Here I have a function written in C++ call foo and make it callable (foo_wrapper) from python by using a python wrapper written in C (wrapper.c). In wrapper.c, I have a static global variable "x", ...

1 2 3 4 5