0
votes
1answer
287 views
How do I prevent static member variables from being accessed by more than one request at a time in IIS?
I’m having some trouble with understanding how IIS is handling static variables on its threads. My understanding has always been that if IIS has 4 worker processes that it can ha …
2
votes
4answers
101 views
Python Scoping/Static Misunderstanding
I'm really stuck on why the following code block 1 result in output 1 instead of output 2?
Code block 1:
class FruitContainer:
def __init__(self,arr=[]):
self. …
1
vote
5answers
95 views
Static Method Calls
Hello All,
Does each static call will initiate a new thread?
For E.g.:
class A
{
public static void displayName()
{
Console.WriteLine("myName");
}
publi …
0
votes
4answers
538 views
ASP.NET/Static class Race Condition?
I have an ASP.NET application with a lot of dynamic content. The content is the same for all users belonging to a particular client. To reduce the number of database hits require …
1
vote
3answers
47 views
Best way to get a static DateTime value
Is there a better way to get a static DateTime value in C# than the following?
public static DateTime StartOfRecordedHistory = DateTime.Parse("2004-01-01");
Thanks!
0
votes
2answers
218 views
What are static and dynamic variables / methods in OOP?
I am trying to better understand basic concepts in OOP.
What are static and dynamic variables and methods in object-oriented programming?
What is, for instance, the difference bet …
3
votes
4answers
240 views
Question about Scope of Static Class Variables in Java
Hi Folks,
I have a static object defined in my logging class, along the lines of:
class myLoggingClass {
static java.util.Properties properties;
...
...
}
…
2
votes
2answers
266 views
Objective c - static members and constants
Whats the difference between:
@interface SomeClass : NSObject {
NSObject *something;
}
and
@interface SomeClass : NSObject {
}
NSObject *something;
? Also, what's the di …
0
votes
3answers
119 views
Get value of static field
I've got the following class:
public static class Pages
{
public static string LoggedOut = "LoggedOut.aspx";
public static string Login = "Login.aspx";
public static s …
1
vote
5answers
294 views
Why might a static data member not get initialized?
I'm trying to register a bunch of classes with a factory at load time. My strategy is to harness static initialization to make sure that before main() begins, the factory is ready …
0
votes
5answers
160 views
Static member does not keep assigned value
OK I have a static class that has two static members, a string and a boolean.
A public static method assigns values to these members based upon the state of parameters passed in. …
0
votes
3answers
926 views
What is better: Static variable V.S. Asp.NET Application Session ?
Say you want to share some resource, like a class or a variable across all threads/sessions within a ASP.NET web application. What is better?
1) A static variable having thread-s …
1
vote
6answers
195 views
How to get System.Type instance of a class-type in Static Member ?
Hi,
I have a public static property in a class. The class has some custom attributes applied to it. I want to access the Attribute in a static property.
In a non-static member I …
1
vote
3answers
383 views
Does the lock(objlocker) make that object thread safe app wide? And are static members automatically thread safe?
When you lock an object is that object locked throughout the whole application?
For Example, this snippet from C# 3.0 in a Nutshell Section 19.6.1 "Thread Safety and .NET Framewor …
3
votes
5answers
579 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 …
