Tagged Questions

28
votes
14answers
24k views

static constructors in C++? need to initialize private static objects

I want to have a class with a private static data member (a vector that contains all the characters a-z). In java or C#, I can just make a "static constructor" that will run before I make any ...
4
votes
4answers
162 views

.Net : Do static constructors get called when a constant is access?

So here is what I'm thinking... public class MyClass { public const string MyConstant = "MyConstantValue"; private static MyClass DefaultInstance; static MyClass() { ...
4
votes
3answers
761 views

Assigning to static readonly field of base class

public class ClassA { public static readonly string processName; } public class ClassB : ClassA { static ClassB() { processName = "MyProcess.exe"; } } I am getting an error ...
1
vote
2answers
171 views

in C# does Static constructor run for each initialization of object, or only once?

in my Class I have a static dictionary of strings object which contains a big number of Items (it reads from a file and initial them) I wrote a static constructor to do so and it takes a few seconds, ...
0
votes
5answers
68 views

Pass argument to a static constructor in Java?

I'm trying to initialize a static class, with an argument, and then run some more static code in that class. I'm aware of the static block, but it seems it can't take any arguments. Is there a way to ...
0
votes
2answers
95 views

Can a static constructor reduce the performance of accessing static methods?

A static constructor is executed the first time you access a static member. Knowing this, I have several questions: Does this mean that every time I access a static method, the runtime must check ...