Tagged Questions
The static-variables tag has no wiki summary.
16
votes
8answers
1k views
When should I use static methods in a class and what are the benefits?
I have concept of static variables but what are the benefits of static methods in a class. I have worked on some projects but I did not make a method static. Whenever I need to call a method of a ...
11
votes
2answers
114 views
How does local() differ from other approaches to closure in R?
Yesterday I learned from Bill Venables how local() can help create static functions and variables, e.g.,
example <- local({
hidden.x <- "You can't see me!"
hidden.fn <- function(){
...
10
votes
2answers
679 views
Objective-C: Why retain a static variable?
Isn't it unnecessary to retain a static variable since it stays around for the duration of the program, no matter if you release it?
See this code:
...
10
votes
5answers
1k views
Is it OK to use static variables to cache information in ASP.net?
At the moment I am working on a project admin application in C# 3.5 on ASP.net. In order to reduce hits to the database, I'm caching a lot of information using static variables. For example, a list of ...
8
votes
3answers
3k views
Google App Engine: Memcache or Static variable?
Well, I think I have a very basic doubt here:
I'm developing an app on GAE (Java) and performing a query to the datastore that returns a lot
of entities, so I need to cache it. I was using memcache ...
6
votes
2answers
319 views
Remoting lifetime for static objects in app domain with client activated objects
I'm curious about shared/static object lifetime in an AppDomain where the RemotingCalls are the cause of creating the shared objects.
We're using a Remoting setup that uses client activated objects ...
6
votes
5answers
330 views
In C++, what happens if two different functions declare the same static variable?
void foo() {
static int x;
}
void bar() {
static int x;
}
int main() {
foo();
bar();
}
6
votes
5answers
621 views
Static variables in instance methods
Let's say I have this program:
class Foo {
public:
unsigned int bar () {
static unsigned int counter = 0;
return counter++;
}
};
int main ()
{
Foo a;
Foo b;
}
(Of ...
6
votes
5answers
9k views
Static variables in C#
In C#, is there a way to put a static variable in a method like VB.Net?
Static myCollection As Collection
5
votes
1answer
77 views
Should I declare pattern object as static
I have the following method in a class:
public boolean validTransAmt()
{
FacesContext facesContext = FacesContext.getCurrentInstance();
Pattern p = ...
5
votes
5answers
285 views
Am I using static in the right way?
I'm writing an XNA engine and I am storing all of the models in a List. In order to be able to use this throughout the engine, I've made this a public static List<Model> so I can access it from ...
5
votes
10answers
1k views
In C, does using static variables in a function make it faster?
My function will be called thousands of times. If i want to make it faster, will changing the local function variables to static be of any use? My logic behind this is that, because static variables ...
5
votes
6answers
552 views
What exactly does “static” mean when declaring “global” variables in C++?
This is an expansion of the scope of a previous question of mine.
What exactly is "static", how is it used, and what is the purpose of using "static" when dealing with C++?
Thanks.
5
votes
8answers
975 views
What exactly does “static” mean when declaring “global” variables in Java?
I've been running into this problem many times and I never bothered to learn why its happening and learn what "static" actually means. I just applied the change that Eclipse suggested and moved on.
...
5
votes
6answers
575 views
Static variables in static method in base class and inheritance
I have these C++ classes:
class Base
{
protected:
static int method()
{
static int x = 0;
return x++;
}
};
class A : public Base
{
};
class B : public Base
{
};
Will ...
5
votes
4answers
178 views
Static variable for optimization
I'm wondering if I can use a static variable for optimization:
public function Bar() {
static $i = moderatelyExpensiveFunctionCall();
if ($i) {
return something();
} else {
...
5
votes
1answer
689 views
Static Variables in R
I have a function in R that I call multiple times. I want to keep track of the number of times that I've called it and use that to make decisions on what to do inside of the function. Here's what I ...
5
votes
4answers
2k views
C++ static initialization order
When I use static variables in C++, I often end up wanting to initialize one variable passing another to its constructor. In other words, I want to create static instances that depend on each other.
...
4
votes
3answers
365 views
set default value in class constructor C#
I need a default value set and many different pages access and update..initially can I set the default value in the class constructor like this? What is the proper way to do this in C# .NET?
public ...
4
votes
6answers
2k views
C++ static member variable and its initialization
For static member variables in C++ class - the initialization is done outside the class. I wonder why? Any logical reasoning/constraint for this? Or is it purely legacy implementation - which the ...
4
votes
1answer
989 views
Static class members python
So I'm using static class members so I can share data between class methods and static methods of the same class (there will only be 1 instantiation of the class). I understand this fine, but I'm just ...
4
votes
2answers
2k views
What is the difference between .LIB and .OBJ files? (Visual Studio C++)
I know .OBJ is the result of compiling a unit of compilation and .LIB is a static library that can be created from several .OBJ, but this difference seems to be only in the number of units of ...
3
votes
2answers
164 views
Local static initialization without holding a lock avoids a possible deadlock in C++11?
In paper http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2660.htm an algorithm is presented that does not need to hold a lock during the initialization of a local static variable but still ...
3
votes
1answer
195 views
Is a static variable in a library (DLL) shared by all processes referencing that library?
I know that a static variable used in a web application is shared for all users across the web application. If I have a library (DLL) that uses some static private variable, do all applications using ...
3
votes
2answers
114 views
Possible to test if a variable is static in PHP?
Is it possible to test if a variable is static in PHP? I am trying create a magic method __get that also looks at static variables. I find that property_exists() returns true when a variable is static ...
3
votes
1answer
209 views
Are static local variables bad practice?
Related C++ question: Static local variables in methods a bad practice?
In VB.NET, when I want a simple counter or something that increments each time a method is called, I often find myself writing ...
3
votes
4answers
558 views
Calling some functions before main in C
I'd like to do some stuffs before main function. I have multiple source files. In each file, there is some work that needs to be done before main. It was no problem in C++, but problematic with C.
In ...
3
votes
4answers
263 views
What to use instead of static variables
in a C++ program I need some helper constant objects that would be instantiated once, preferably when the program starts. Those objects would mostly be used within the same translation unit, so the ...
3
votes
3answers
381 views
Use of static variables and functions in global scope
Is there a use for flagging a variable as static, when it lies in the global scope of a .cpp file, not in a function?
Can you use the static keyword for functions as well? If yes, what is their use?
3
votes
4answers
1k views
Making global static variables multithread safe
I have global static variables in a C library, which generate exceptions in a multithread run. I need to make them safe in some way (i.e., each thread should relate to a different instance of these ...
3
votes
1answer
1k views
Main Program and Shared Library initializes same static variable in __static_initialization_and_destruction_0
Does anyone know why a library initialized within dlopen() would initialize a static variable owned by the main program. Both the main program and shared library have a copy of the static variable, ...
3
votes
2answers
865 views
Static Class Variables in Dynamic Library and Main Program
I am working on a project that has a class 'A' that contains a static stl container class. This class is included in both my main program and a .so file. The class uses the default(implicit, not ...
2
votes
3answers
70 views
How to initialize static variable on inherited class?
I am trying to create a "parent" class wich provides a common constructor and paramter types to all it's inherited classes. The only thing that changes between the inherited ones is the value of some ...
2
votes
3answers
63 views
how can I use singleton or a static instance for my global website settings
I have a base web page and used to inherit all of my aspx pages. I have several general method that I have put in base page so that it is available in all inherited aspx pages.
I have one property to ...
2
votes
3answers
124 views
Multiple threads reading static variable at the same time
question may be newbie or duplicate, but i wonder what is happening when several threads try to read a static variable at the same time. I'm not interesting in synchronization now, i just want to know ...
2
votes
1answer
106 views
Python Static Variable
I'm creating an application that uses a base class to hold all of the configuration values, import methods, etc.
/
- application.py
+ class foo
+ config = None
+ def ...
2
votes
1answer
268 views
ARC: How to release static variable?
Will dealloc (below) release the NSString pointed to by the static variable exampleString?
// ExampleClass.h
@interface ExampleClass : NSObject
@end
// ExampleClass.m
static NSString ...
2
votes
1answer
82 views
Is it a good idea to make mysql connections static?
I'm working on a medium-sized (probably) PHP system which had MySQL connections being opened everywhere throughout different files and, made into global variables for the later included scripts to ...
2
votes
7answers
167 views
No linker error when global variable declared static in the header file [closed]
Possible Duplicate:
Static variables in C++
// x.h
int i = 3;
// x1.cpp
#include"x.h"
//...
// x2.cpp
#include"x.h"
//...
Above code will give linker error. However If I declare,
//x.h
...
2
votes
3answers
116 views
creating an enum/final class in java
I'm trying to figure out the best way to create a class whose sole purpose is to be a container for global static variables. Here's some pseudocode for a simple example of what I mean...
public class ...
2
votes
2answers
101 views
Static instance of DataContractJsonSerializer - good or bad design?
I have a class which I am using to serialize and deserialize business objects in an ASP.NET application.
The class contains this static variable:
private static DataContractJsonSerializer ...
2
votes
2answers
161 views
Declaring a new static variable outside of Class
Is there a way declaring new static variables outside of that class even if it's not set in class?
// Using this class as a static object.
Class someclass {
// There is no definition for static ...
2
votes
2answers
184 views
Are static variables in functions in PHP global across instances?
If I have code which uses a static variable for caching purposes like this:
class BossParty
{
// ...
public function getTemplate()
{
static $template;
if ($template == ...
2
votes
4answers
441 views
How do you clear a static variable in PHP after recursion is finished?
So for example, I have a static variable inside a recursive function, and I want that variable to be static through out each call of the recursion, but once the recursion is finished, I want that ...
2
votes
3answers
130 views
Does the order of keywords in variable definition matter?
Is there any difference between the order:
public static final String = "something";
or
public final static String = "something";
?
2
votes
2answers
227 views
Static Function Variables and Concatenation in PHP
Consider the following:
$var = 'foo' . 'bar'; # Not a member of a class, free-standing or in a function.
As soon as I mark $var as static, however:
static $var = 'foo' . 'bar';
PHP (5.3.1 on a ...
2
votes
3answers
134 views
Am I going mad? c# / static modifier
I have the below code, oddly enough it keeps on returning the same value (even though filename) is different, if i call it more than once in the same request.
Ive just stepped through the code and ...
2
votes
1answer
307 views
Class library and static variables in asp.net
I have class library which should encapsulates orm logic. To avoid some db calls, it should contain some kind of cache or static variables (I want to avoid them). It's used in asp.net and wcf ...
2
votes
5answers
530 views
C++ wrapper for C library
Recently I found a C library that I want to use in my C++ project.
This code is configured with global variables and writes it's output to memory pointed by static pointers.
When I execute my project ...
2
votes
8answers
481 views
Static function-scoped pointers and memory leaks
I've written a simple library file with a function for reading lines from a file of any size. The function is called by passing in a stack-allocated buffer and size, but if the line is too big, a ...