A static member is a data field that is shared by all instances of a class or structure for the same program. Static member exists even when no objects of the static data member's class exist. A feature of C++, roughly equivalent to Java static fields.

learn more… | top users | synonyms (1)

0
votes
3answers
396 views

Sharing data between selected users in web application c#

My website uses a web user control. The properties for the user control will be set will be common for a set of my users. e.g. if I have 20 users accessing my website, 5 of them may be using the user ...
3
votes
2answers
573 views

PHP Static Variables in Abstract Classes

I'm working on a project where I'd like to be able to declare a static member variable inside of an abstract base class. I've got a Model class, an intermediate Post class, and finally a ...
2
votes
2answers
467 views

cleaning problem using java classes in matlab

I am writing a java application with a matlab ui. For this I use java objects in matlab as explained here: http://www.mathworks.com/help/techdoc/matlab_external/f4873.html What I want to do is create ...
1
vote
2answers
139 views

C++ class member callback and external library

I would like to solve this issue about class member function callback. Imagine you have a function from an external library (which cannot be modified!) like this: void fortranFunction(int n, void ...
0
votes
2answers
108 views

EXC_BAD_ACCESS upon accessing a static member?

I've developed a game on Cocos2d-x v2 platform I started on Android, after completely finishing the coding on Eclipse I used the same code on Xcode to create and iOS version. After adding all the ...
0
votes
2answers
580 views

static Member access linker problems

gph is a singleton class with no getInstance method class gph { public: static void newfun(); static void newfun1(); //...// private: gph(); }; This class gets build into a static ...
3
votes
1answer
322 views

Static members of static libraries

I have static library with static member. This library statically linked to main application and to one of its plugins. Looks like static variable initializing both in main (application) and in dll ...
2
votes
1answer
150 views

How to guarantee initialization ordering of const static members in templated structures

I have two templated structures that each contain a const static member variable. The initialization of one of these member variables depends on the second. I would therefore like to be able to ...
1
vote
1answer
57 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, ...
1
vote
1answer
70 views

Would Scala a singleton object with mutable state have same behavior as Java static in a servlet container environment?

Not exactly sure how to phrase this question. In java if you have a static instance var and the owning class is in tomcat/classes or tomcat/lib so that many different web apps (children of the tomcat ...
1
vote
1answer
54 views

Static variable and the Enterprise Library will this cause connection leaks?

Will the following code cause additional connections or references created by dbConn to not be disposed of properly? It seems to me it would because it is stored in a static member. public static ...
1
vote
1answer
58 views

Does adding new static member in middle break binary compatibility of a C++ library?

I have a class which has many static members, but I have added new function in the middle of the header file. Does this break binary compatibility? Clients need to be recompiled? EDIT (1): Class has ...
1
vote
1answer
232 views

crash. QObject::connect in a constructor of a static object instance

I'm trying to find out why my app crashes for the whole day. A picture worth thousands of words, so take a look at this code. Header: class SandboxedAppStat : public QObject { Q_OBJECT private ...
1
vote
1answer
138 views

Static map initializer function error

I get the following base error: 1>c:\program files\microsoft visual studio 10.0\vc\include\utility(163): error C2436: 'second' : member function or nested class in constructor initializer list ...
1
vote
1answer
252 views

constructor of global static member not being called when compiled with rvct

Well, this is kind of complex to explain. I'm compiling a static library which has a header that looks something similar to this: class Foo{ static int Goo(){ DoSomethingExciting(); ...
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 ...
1
vote
1answer
624 views

How can I animate a static object in a WPF storyboard

I have a WPF program to which I need to add a "Demo mode". Since I want my designers to be able to modify the demo mode without me having to recompile the program each time, I tough it would be a ...
0
votes
1answer
39 views

namespace with static data memeber of structure aving ordering issue

I have the code as below with which i experience static object order creation issue. h1.hpp namespace X { struct XX { static const string str1; static const string str2; }; } ...
0
votes
1answer
24 views

mouse coordinates variable's scope

I am asking for an advice on how should I declare mouse coordinates that resides inside a namespace and use it frequently by all classes belonging to that namespace. I use to declared its variables ...
0
votes
1answer
43 views

Spontaneous “NSCFString encodeBytes:length:forKey: unrecognized selector” exceptions

I'm using code that I've used in several other projects without incident. Suddenly, I'm getting random error messages when using the same code - but only in one particular project. This code has run ...
0
votes
1answer
127 views

Unable to get static class variable from C# class into VB.NET class

c# class: public class AClass<T> where T : INterFace { public static float m_var = 0.91F; ... } VB.NET class Public Class AnotherClass ... Public ReadOnly Property V As Single Get ...
0
votes
1answer
451 views

Initialization order of static variables in Flex causing bug

I've got a component written for my app by a third party developer and am trying to integrate it, but I've found a bug that seems like it's either a compiler bug, or there's something with how Flex ...
0
votes
1answer
217 views

Android handling static Database object

I've got custom adapter class, which incapsulates SQLiteDatabase. Adapter manages db connection: public AutoDBAdapter(final Context context){ this.context=context; checkDatabase(); try{ ...
-1
votes
1answer
69 views

Initalization of static structure in C++

I'm implementing a thread safe singleton class in C++. I need a way of initializing the mutex which guards the getInstance() method. This is a self contained shared library, so I can't use a mutex ...
2
votes
0answers
234 views

how to specify setter injection for a static class using StructureMap?

I'm currently working through this code snippet from a design patterns book: public static class DomainEvents { public static IDomainEventHandlerFactory DomainEventHandlerFactory { get; set; } ...
1
vote
0answers
20 views

Python Unit testing backup statics

I'm trying to unit test in python but I have troubles with statics attributes. The problem is: Python doesn't backup static attributes which entails that a test acts unpredictable. Here is an example ...
1
vote
0answers
33 views

Set static fields on custom View from XML

This is a custom view public class MyView extends Button { private static int color; . . . } This XML instantiates MyView several times <LinearLayout . . .> ...
0
votes
0answers
59 views

calling a static member function in fixed point implementation

hello all i am doing fixed point implementation in c++ which is done by the following code. The problem is when i call cossin_cordic static member function from the test file . i am getting the error ...
0
votes
0answers
65 views

Is there a way to nullify a bundle of static properties?

In my mvc website I used to use static variable to stock shared variables between the requests, is there a way to "invalidate" a bundle of static variable without restart all my app, or nullifing them ...
0
votes
0answers
56 views

Application.OpenForms() behaving strangely

The Code that's causing trouble private void OpenType_Click() { !Application.OpenForms.OfType<Type>().Any() } Alright,so this line Which is in Form1 checks whether there are any forms of ...
0
votes
0answers
37 views

static members in asp.net webservice disappeare

I have a web service which has to load a huge list of strings commonly used by all users. public class clsNLP : System.Web.Services.WebService { private static list<string> A; ...
0
votes
0answers
21 views

class static data member with static linkage

Is it possible to declare some read only static data member with static linkage, so that I can put the definition in the header and don't bother about putting one definition and only one in a compile ...
0
votes
0answers
77 views

how to convert static variable into normal variable in android

i tried to get variable from static member functions, that comes from another class and to store in normal variable in MainActivity, but it gives an crash. and i am in need to use that String that ...
0
votes
0answers
18 views

Transfer member confusion

Can I define a public static member in MainActivity like this: public static int end; I want know if I can assign it in Asynctask Thread like this end=9. If this is OK, why is it needed to transfer ...
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 ...