Static is a term used in some programming languages to define a function or data storage area (field) that is not bound to any specific object instance.

learn more… | top users | synonyms

0
votes
1answer
35 views

How to syncronize static variables in a web farm in asp.net

in asp.net we can store application scope variables (static, application) But how can we sync the static variables of a node with the static variables of another node, without the use of distributed ...
0
votes
2answers
27 views

Setting a static member of a variable class in php

I'm trying to add a static member to each of my classes that contains the default database connection that they should use when instantiated. Here's how I'm trying to do it: <?php //other classes ...
-6
votes
3answers
43 views

Java never declares access level of variables in methods whether static or not [closed]

Today I suddenly realized that Java never specifies access level for local variables when I try to declare a variable for main method. I also tried to give it a access level modifier, but it doesn't ...
2
votes
1answer
71 views

Need a really static field in a generic class, or otherwise how to protect its visibility?

I want to have a class like: public class Forest<S, T> { static IList<Animal> coolGuys = new List<Animal>(); } But I want coolGuys to be really static, which means it has to ...
0
votes
0answers
38 views

Parameter passing methods

I need to make some things clear before my exam. Can you help me to answer the following question? If Im mistaken I wan to fix it and learn the true answer. Thank you!!! int x = 1; int foo (int a) ...
1
vote
1answer
27 views

PHP - Dynamic Class Name Inside Class Properties

I was wondering if it's possible to dynamically access a static class from within a class property. I'm trying to access the properties in a nchild class, but I'm having to do something like this: ...
-4
votes
0answers
50 views

Visual c++ Easiest way to get the offsets of functions

I want to get the offsets of a function of a compiled program in visual studio. I know I could use something like &function - imagebase But I want to know whether there is an easier way to do ...
1
vote
4answers
99 views

Main method and classes, where do declare? [closed]

New to programming, new to java. I seem to understand the basic pieces like classes and their components, methods, etc, but I can't figure out how to put them together. For example, I'm following ...
2
votes
1answer
77 views

How do I create static WordPress pages that are dynamically pulled from database?

I have a bunch of data in a MySQL database indexed by auto-incremented id values. A row would look like this: id | title | description | story 1 | A ...
0
votes
0answers
41 views

Application Session and Static variables different for some visitors of a chatroom

Hello and thanks in advance, I have been working on a web application in ASP.NET where you can join a chat room. Everyone who goes to the page should land in the chat room. However upon testing this ...
0
votes
1answer
74 views

Node.js - Memory leak when static file connection is dropped (Static files)

I am getting a memory leak when I prevent a file from loading fully loading. E.g. <script type="text/javascript" src="http://mydomain.com/js/lib.js"></script> (node) warning: possible ...
2
votes
4answers
64 views

Get current class at runtime in a static method?

How can I get the type (not a name string, but a type itself) of the current class, in a static method of an abstract class? using System.Reflection; // I'll need it, right? public abstract class ...
0
votes
1answer
33 views

In AS3, how do I run code when a when the movie starts?

I'm making a level editor for my game, and would like to be able to access a list of all the classes included in my game. I have a static function in my Main class: public static function ...
1
vote
3answers
141 views

C++ const static member array initialization

I have class Foo with a member variable bar which is a very big array of dynamic_bitset. I would like to make variable bar static for the sake of memory, I would also like it to be const. The value of ...
2
votes
2answers
86 views

Is a class with only static methods better than a namespace with only non-member functions?

I was inspired by the comments under this question. I didn't see any reason why a class with only static methods would be a better design than a namespace of non-member functions. Any list of pros ...
0
votes
1answer
39 views

Setting value to static property after throwing an exception

I have this below static property: private static _field; public static MyProperty { get { if(_field !=null) { return _field; } ...
-1
votes
0answers
34 views

Similar behavior on high dimensional data set

I have a high-dimensional (with an aspect of sequence) data set and i want to know if my data set contains a similar behavior in some sequences ? do you have any idea ? thanks beforehand.
0
votes
2answers
39 views

Class that needs to use containers as look-up tables. Should they be global variables or static members?

I apologize if I break any rules of this site in advance. I just signed up to ask this. Suppose I make a class. It will have several strings for data members and some functions for some processing ...
1
vote
1answer
45 views

Managing managers in a Singleton class

I'm trying to get this straight and to see if my idea is correct or not. I'm having a few Manager classes. For example, an UserManager and a PhoneManager. Because I'm having quite a few problems ...
0
votes
0answers
31 views

WPF - Getting static column value in code

I want to show edit and delete link in datagrid and if any user clicks on these link I want to perform some actions, so I've bind the hyperlink column with ID field of database, Following is the code ...
1
vote
2answers
56 views

Initializing a thread in a static block?

If I start a thread in a static block. Will the jvm wait for the thread to finish before it loads the class? static { System.out.println("static block"); DataRetrievalThread t = new ...
0
votes
1answer
58 views

15 million static files shared via NFS

Had a proposed solution from a co-worker to setup a caching layer for files that never (almost never) get updated. Currently the Ruby application has to fetch content from DB, render a page and serve ...
5
votes
4answers
140 views

In which case shouldn't I use static members in a class?

I have to ask this question because I feel that only experienced programmers can know the pros and cos of static members in a class. I've read books explaining about static members, I've also used ...
2
votes
4answers
61 views

How to ensure that there is at least one instance of a class?

I need to ensure that there is at all times during programm execution at least one instance of a certain class. A Singleton won't do because (among other reasons) I might in the future need more ...
0
votes
3answers
60 views

Class with defined static constant values in Objective-C

I want to create a class that will contains static values accessable from all project. Pseudocode: class Constants: constant String API_URL : "http://api.service.com" constant Integer SOME_VALUE ...
1
vote
0answers
24 views

SVN mixed static and commitable files

I wish to create a repository of data-files and meta-files. The data files are huge (2Gb) binary files, while the meta-files may be text-files. The data-files will seldom (if ever) be changed. I ...
0
votes
1answer
87 views

In search of some guidance regarding HashMap

I'm making a Sudoku Solver program in Java, which uses backtracking and bruteforce for the solving algorithm. The problem I seem to be having is that when I insert the correct values in a simple ...
0
votes
1answer
53 views

Singleton class method in static library in iOS

I have a static library which contains a Singleton Class Method, I call it in an (IBAction) function, the first time I call it is ok, but the second crashed, and no error information, the singleton ...
0
votes
2answers
175 views

Java - Static and Dynamic Array Initialization

Is it true that every array that is initialized during runtime is dynamic and every array that is initialized during compiling is static? for example: int array[]; public main() { ...
0
votes
2answers
44 views

Workaround to static member inheritance

I'm actually working on a project in which I need a bunch of objects (classes if you prefer, rather than instances) to implement a same behavior. Basically, each "class" would need to provide a way of ...
0
votes
2answers
74 views

Get static variable of subclass given superclass

This was very difficult for me to word into a question so allow me to explain. I have an abstract class Entity and subclasses House and Warehouse. Each subclass has the same static variables with ...
-2
votes
2answers
112 views

How to use “runOnUiThread(runnable)” inside static method?

I'm writing code in two different classes. The first one runs IOIO Thread which reads pins status of an IOIO board; when this thread is running, it will update the several TextViews which are on the ...
1
vote
6answers
117 views

How do static objects work?

I know how to work with objects.. but one thing in particular has me scratching my head. Static methods. I'll give an example. Toolkit theKit = Toolkit.getDefaultToolkit(); I think that the ...
2
votes
2answers
51 views

Initialising static multi-dimensional null-terminated arrays

I'd like to initialise a static array which is null-terminated and contains static null-terminated arrays. I'd also like to be able to print all of the contents at a later point. Here's the code I've ...
0
votes
0answers
83 views

Translate c\c++ code into MIPS Assembler

How can I translate this code into MIPS Assembler #include <stdio.h> void func() { static int x = 0; printf("%d\n", x); x++; } int main() { func(); func(); func(); ...
-2
votes
2answers
27 views

How to keep static variables in MIPS [closed]

Is there a way in MIPS assembly to keep static variables? Should I store variable in $sp or $gp and how? give me an example please
1
vote
1answer
53 views

C# member cannot be accessed with an instance reference

So i have these variables List<string> files, images = new List<string>(); string rootStr; And this threaded function private static int[] thread_search(string root,List<string> ...
0
votes
6answers
86 views

Can variable of nested static class be garbage collected?

In Java, having a nested static class Human, I'm wondering if after cleanup of the map variable can make it available for garbage collected. At the moment just before doSomeCode() I called System.gc() ...
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
2answers
77 views

Static Variables - C

I am writing a program that shares a globaly declared pointer to a buffer that could be used by all the functions within the program. But the buffer is not necessary in certain cases so the pointer is ...
24
votes
4answers
1k views

Dynamic array and prebuilt data

In C, I am trying to do the following: typedef struct { int length; int items[]; /* 1 */ } wchararray_t; typedef struct { long hash; wchararray_t chars; /* 2 */ } string_t; ...
0
votes
2answers
61 views

Access control element from static thread function

I ve read lots of information about this stuff and i tried this: class Server { ... public Server(int Port, ListBox ex_lb, PictureBox ex_pb) { ServerWork = new Thread(() => ...
0
votes
0answers
52 views

Grails: How do I create a static array

I'm new to grails. I need to create a static array which needs to be filled with certain items on startup. i.e public class kingUtil { public static String[] overlordArray = new String[] ...
0
votes
0answers
35 views

Static 'constructor' in abstract static context

I'm having a problem. Basically what I want to di is use a static constructor to return a instaniated object with the parameters passed to this static function (which acts like a constructor). So ...
1
vote
2answers
101 views

Using global vector in C++

I have implemented a fast comparison function which uses a look-up table. Since this function is used in multiple classes in the project, I need to make sure that there is only one copy of the look-up ...
1
vote
1answer
66 views

Access static variable in symfony 2.2 twig

I have a class containing constant options in array form: namespace MyNameSpace; class OptionConstants { /** * Gender options */ public static $GENDER = array( 'Male', 'Female' ...
0
votes
3answers
60 views

Why use Intent when we can directly use modified static members?

Suppose we are sending a data received from text-box from an activity Main_Activity to another activity Display_Message_Activity by clicking a button. In Main_Activity: Step-1: To declare the final ...
0
votes
1answer
33 views

static BufferedImage from non-static

Okay, this is a small part of a big issue I'm trying to have while creating an executable JAR file. I need to move my images so that they can be in another package so that they can be found anywhere. ...
0
votes
2answers
46 views

abstract static classes in java giving error illegal combination of modifiers

abstract class AbstractCase2 { abstract static void simpleMethod1();//giving error } class Case2 extends AbstractCase2 { static void simpleMethod1() { System.out.println("Within ...
0
votes
2answers
73 views

How to destroy static field when app exits?

I got a singleton class in my application, which is defined just somewhat like: public class SingletonTest { private SingletonTest() {} private static SingletonTest instance = new ...

1 2 3 4 5 107