Tagged Questions
32
votes
11answers
1k views
How exactly do static fields work internally?
Say you have a class,
class Foo
{
public static bar;
}
When you say:
new Foo();
I can imagine that in memory, a space is reserved for this object.
...and when you say again:
new Foo();
...
2
votes
5answers
228 views
Python: Callback issue
So I'm making a game, and all objects derive from one GameObject class, which looks something like this;
class GameObject(pygame.sprite.DirtySprite):
actions = dict()
def __init__(self):
...
5
votes
1answer
59 views
Python: Initializing an object's members with a parent's constructor?
So I have some Python code that's structured something like this;
class GameObject(pygame.spriteDirtySprite):
def __init__(self):
pygame.sprite.Sprite.__init__(self)
self.image = ...
1
vote
3answers
55 views
How do I create a static member for an object in a namespace in JavaScript?
I've simulated a static class variable in Javascript.
MyObject.staticVariable = "hello world";
function MyObject() {
// do something
}
MyObject.prototype.someFunction = function() ...
I do ...
1
vote
4answers
185 views
Is there only one instance of a static variable per process?
If I have the following class:
public class MyClass { public static int MyStaticInt = 0; }
If in the one solution I refer to MyNameSpace.MyClass.MyStaticInt in two different assemblies, am I ...
0
votes
1answer
65 views
Private static members and inheritance
So I'm working with a singleton class that wraps a few web services. The reference to the services are stored as private static readonly members. I want to have a very similar class that wraps ...
0
votes
3answers
128 views
c++ destructors
consider this scenario:
I need to create a ui for some settings. As, data and ui should be separated in theory, I defined a separate class which takes care of the configuration data. The question I ...
1
vote
2answers
297 views
PHP static class member scope
Let me preface this with, I come from a Java background.
What is the scope of a static class member in PHP? ie: Request, Session, Server Lifecycle, etc
My current understanding is that everything is ...
1
vote
2answers
70 views
Threading behavior of methods of a class object declared as static member of another class
Recently a colleague of mine came up with a piece of code and asked my opinion regarding thread safety of the code. Below is an example that illustrates the same scenario as the code.
public class ...
1
vote
3answers
185 views
PHP combined static and non-static class vs 2 separate classes
I have a PHP class for building HTML tags. Each HTML tag becomes of new instance. I have some utility methods needed within the class for handling certain functional stuff like escaping attributes and ...
2
votes
2answers
80 views
How can I statically instantiate a member that depends on an instance method?
There is base class A which has a method to load a data source.
Various classes are derived from A including derived class B.
Now I need to have a static member variable in class B e.g. mStaticOfB ...
0
votes
3answers
129 views
Multiple instances v. single static instance
Let's say I have this custom component. It subclasses JMenuItem and all instances use the same Font object, although none share the same instance. For example,
public abstract class JFooMenuItem ...
1
vote
2answers
755 views
isset on static class attributes
class A {
public static $foo = 42;
}
$class = 'A';
$attribute = 'foo';
var_dump(isset($class::$attribute)); //gives bool(false)
How can i checkt, of this static attribute exists in this class?
...
1
vote
3answers
754 views
How can I get/set member variables from inside a static function?
I am trying to do something like this:
string strFirstName;
string strSurname;
public static bool MyItem(string FirstName, string Surname)
{
strFirstName = FirstName; //won't work obviously
...
0
votes
2answers
238 views
Static function inheritance in [incr Tcl]
Inheritance in incr Tcl doesn't work as expected. Consider the code below.
package require Itcl
::itcl::class Base \
{
public {
proc function { } { puts "==== Base::function" }
}
}
...
1
vote
4answers
397 views
A class that only has static data and methods to access these data. How to implement that properly?
I know that is a beginner's question. I'm new to java and and also to programming in general.
Say I got a class that has only static data, example:
class Foo {
private static int x; }
I want to ...
0
votes
3answers
223 views
What is the right way to implement communication between java objects?
I'm working on an academic project which simulates a rather large queuing procedure in java. The core of the simulator rests within one package where there exist 8 classes, each one implementing a ...
2
votes
1answer
81 views
Is it a good idea to internally invoke the constructor in a static method?
Let's say for example I had a localised date class where the normal usage was to create an object.
$d = new Date(mktime(), 'MM-DD-YYYY', array('locale' => 'es'));
Now, what if I didn't want to ...
0
votes
2answers
3k 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 between using $this vs. ...
4
votes
5answers
320 views
Don't static members make classes kind of (global) objects themselves?
Every time I come across an implementation of the singleton pattern or any static classes (i.e. classes with (almost) only static members) I wonder whether this isn't actually a hack and therefore ...