Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

45
votes
6answers
29k views

Initializing private static members

This feels like a dumb question, but what is the best way to initialize a private, static data member in C++? I tried this but it gives me weird linker errors: class foo { private: ...
18
votes
6answers
446 views

C# two classes with static members referring to each other

I wonder why this code doesn't end up in endless recursion. I guess it's connected to the automatic initialization of static members to default values, but can someone tell me "step by step" how does ...
17
votes
3answers
4k views

C++ Static member initalization (template fun inside)

For static member initialization I use a nested helper struct, which works fine for non templated classes. However, if the enclosing class is parameterized by a template, the nested initialization ...
15
votes
2answers
274 views

Why a class containing a static data member of the same class does not give compilation error?

class base { public: base a; }; It gives compilation error. class base { public: static base a; }; whereas this code does not give compilation error
15
votes
5answers
7k views

PHP: How to initialize static variables

I have this code: private static $dates = array( 'start' => mktime( 0, 0, 0, 7, 30, 2009), // Start date 'end' => mktime( 0, 0, 0, 8, 2, 2009), // End date 'close' => ...
14
votes
3answers
921 views

Why does Java prohibit static fields in inner classes?

class OuterClass { class InnerClass { static int i = 100; // compile error static void f() { } // compile error } } Although it's not possible to access the static field with ...
14
votes
1answer
3k views

ASP.NET Application state vs a Static object

if i have a standard ASP.NET application, is there any difference between making an object static as opposed to putting the object instance in the Application state? from my understanding, both ...
13
votes
7answers
374 views

C#.NET - Why do members of a static class need to be declared as static? Why isn't it just implicit?

Obviously there can't be an instance member on a static class, since that class could never be instantiated. Why do we need to declare members as static?
13
votes
7answers
941 views

Should static variables be replaced with enums?

So I was looking at some code that was checked in and I got all puzzled over: // Amount of days before cancellation can't be done enum Cancellation { Limit = 2 }; Asking the guy who checked it in ...
12
votes
6answers
3k views

static class data vs. anonymous namespaces in C++

I occasionally have classes with private static data members. I'm currently debating if I should replace these with static variables in an unnamed namespace in the implementation file. Other that ...
12
votes
4answers
5k views

Are static fields open for garbage collection?

Given an hypothetical utility class that is used only in program setup: class MyUtils { private static MyObject myObject = new MyObject(); /*package*/static boolean doStuff(Params... params) { ...
12
votes
3answers
7k views

Interfaces with static fields in java for sharing 'constants'

I'm looking at some open source Java projects to get into Java and notice a lot of them have some sort of 'constants' interface. For instance, processing.org has an interface called PConstants.java, ...
11
votes
4answers
393 views

Why doesn't Scala have static members inside a class?

I know you can define them indirectly achieve something similar with companion objects but I am wondering why as a language design were statics dropped out of class definitions.
10
votes
1answer
501 views

Class-scoped enum

I have a c++ class with an enum inside, and I wanted to mimick that with boost::python, so that I can write MyClass.value in python. boost::python::class_ does not have an enum_ method, and I was ...
10
votes
5answers
236 views

Why field inside a local class cannot be static?

void foo (int x) { struct A { static const int d = 0; }; // error } Other than the reference from standard, is there any motivation behind this to disallow static field inside an inner class ? ...
10
votes
3answers
2k views

Where does static variable work in ASP.NET page?

I had an interview today and every thing was going very good, but then an interviewer asked me a question Where Does Static Variable Work in C#- At Application Level or At Page Level. I was not very ...
10
votes
6answers
852 views

When to use enums, and when to replace them with a class with static members?

It recently occured to me that the following (sample) enumeration... enum Color { Red, Green, Yellow, Blue } ... could be replaced with a seemingly more type-safe class: struct ...
9
votes
1answer
116 views

Is there any way by which I can save the state of `static members`?

Just like the way we save the instance variables using serialization, is there any way by which I can save the state of static members? If there is a situation, where getting back the state of ...
9
votes
2answers
490 views

How do static member variables affect object size?

I'm wondering how static member variables are typically implemented in languages like C++ and Java and if their use affects the size of instantiated objects. I know that a static members are shared ...
9
votes
2answers
390 views

Have I found a bug in Clang?

I tried to compile the code below with Clang class Prasoon{ static const int dummy = 0; }; int const Prasoon::dummy = 0; int main(){} The above code did not give any error when compiled with ...
9
votes
3answers
444 views

What are static variables?

What are static variables designed for? What's the difference between static int and int?
8
votes
4answers
396 views

How to force a static member to be initialized?

Consider this example code: template<class D> char register_(){ return D::get_dummy(); // static function } template<class D> struct Foo{ static char const dummy; }; ...
8
votes
1answer
137 views

Why does C# compiler overload resolution algorithm treat static and instance members with equal signature as equal?

Let we have two members equal by signature, but one is static and another - is not: class Foo { public void Test() { Console.WriteLine("instance"); } public static void Test() { ...
8
votes
4answers
9k views

static vs extern “C”

(expert C/C++ question) What is the difference between a static member function and an extern "C" linkage function ? For instance, when using "makecontext" in C++, I need to pass a pointer to ...
7
votes
2answers
129 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 ...
7
votes
3answers
114 views

Automatic destruction of static object

Why doesn't C++ create/destroy a static member of a template type. Observe the following example: #include <iostream> struct Dump { Dump() { std::cout << "CTOR" << ...
7
votes
3answers
134 views

When do constructors of static members of template classes get called in C++?

There is plenty of information on when constructors of static members of ordinary classes are called. However, I am seeing some strange behavior with regard to template classes. What should the ...
7
votes
4answers
134 views

What is the initialization order for static data members of template class in a file?

In a given file if I have, struct A { static int a; }; struct B { static int b; }; int A::a; int B::b; Then, I can always expect that A::a gets initialized before B::b. Now for the same file, take ...
7
votes
2answers
173 views

Seq seq type as a member parameter in F#

why does not this code work? type Test() = static member func (a: seq<'a seq>) = 5. let a = [[4.]] Test.func(a) It gives following error: The type 'float list list' is not compatible with ...
6
votes
4answers
720 views

Weird undefined symbols of static constants inside a struct/class

Either I'm very tired or something weird is happening that I'm not aware of, because the code below is resulting in undefined symbols for Foo::A and Foo::B when linking. This is minimized as much as I ...
6
votes
5answers
783 views

C++: static member functions

After reading sbi and Eli Bendersky's answers in this question I started to wondering what static member functions are for. A class' friend free function shouldn't be able to do anything a static ...
6
votes
4answers
3k views

Question about Scope of Static Class Variables in Java

I have a static object defined in my logging class, along the lines of: class myLoggingClass { static java.util.Properties properties; ... ... } According to my reference book, ...
6
votes
5answers
1k views

What is the lifetime of class static variables in C++?

If I have a class called Test :: class Test { static std::vector<int> staticVector; }; when does staticVector get constructed and when does it get destructed ? Is it with the ...
5
votes
3answers
119 views

Why should I initialize static class variables in C++?

In C and C++ all static variables are initialized by default to ZERO. This is not the case of static class data members. Why is that? #include <iostream> using namespace std; int var; class ...
5
votes
2answers
121 views

Is it possible to Initialize a static member array dynamically

There are so many questions about initializing static members in C++, and yet I couldn't find this one. class Node { private: static const int INITIAL_SIZE = 100; static Node* node_space; ...
5
votes
3answers
231 views

Why don't static member variables play well with the ternary operator?

Here's the deal. I have a static class which contains several static functions used for getting input. The class contains a private static member variable for indicating whether the user entered any ...
5
votes
2answers
327 views

F# code organization: types & modules

How do you decide between writing a function inside a module or as a static member of some type? For example, in the source code of F#, there are lots of types that are defined along with a equally ...
5
votes
8answers
3k views

Should I use static data members? (C++)

Let's consider a C++ class. At the beginning of the execution I want to read a set of values from an XML file and assign them to 7 of the data members of this class. Those values do not change during ...
4
votes
3answers
117 views

Difference between static method and non static function in memory

As I understand, each instance of a class has its own member variables in memory, so that it can store different values for different objects. However, it is not the same for member functions. Member ...
4
votes
2answers
312 views

Do static members ever get garbage collected?

Do static member variables ever get garbage collected? For example, let's use the following class. public class HasStatic { private static List<string> shared = new List<string>(); ...
4
votes
6answers
227 views

Static field initialization order (C#) - can someone explain this snippet?

I am a C++ programmer learning C#. I am currently reading C#4.0 in a Nutshell. I have come accross this statement/snipet on page 74: Static field initializers run in the order in which the ...
4
votes
3answers
130 views

behavior of static variable with inheritance

I am asking this question for the discussion. Suppose i have flowing class hierarchy class A { public: static int varr; } class B : public A { } Class C ...
4
votes
2answers
354 views

Static members class vs. normal c-like interface

Hey there. After reading here about the Service Locator pattern, it got me thinking wether a class with only static members really is the way to go, or if a normal c-like interace wouldn't be more ...
4
votes
9answers
293 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
4answers
198 views

Is this way of creating static instance thread safe?

I have the following sample C++ code: class Factory { public: static Factory& createInstance() { static Factory fac; return fac; } private: Factory() { ...
4
votes
8answers
491 views

How can a compiler differentiate between static data members having same name in different classes in C++?

I had a C++ interview recently where I was asked, how does the compiler differentiate static data members having the same name in two different classes? Since all static data variables are stored in ...
4
votes
2answers
307 views

Initializing static members of a templated class

I'm trying to figure out why this example doesn't compile. My understanding is that if a static variable is not explicitly set then it defaults to 0. In the five examples below four of them behave as ...
4
votes
4answers
2k views

How to auto-increment reference number persistently when NSManagedObjects created in core-data

In my application i am using core-data to store information and saving these data to the server using web-connectivity i have to use MySql. Basically what i want to do is to keep track of number of ...
4
votes
8answers
298 views

Class decorator to declare static member (e.g., for log4net)?

I'm using log4net, and we have a lot of this in our code: public class Foo { private static readonly ILog log = LogManager.GetLogger(typeof(Foo)); .... } One downside is that it means we're ...
4
votes
6answers
2k views

How to free static member variable in C++?

Can anybody explain how to free memory of a static member Variable? In my understanding it can only be freed if all the instances of the class are destroyed. I am a little bit helpless at this ...

1 2 3 4 5