2
votes
3answers
72 views

Is it possible to move variable's values from one class to another class without inheritance in java?

I have learnt how to call methods and even variables between two classes. I wanted to know if you can move values from one class to another without using inheritance. Here is an example: I create ...
1
vote
1answer
37 views

Static function access to class member

Class Header: #ifndef _APP_H_ #define _APP_H_ #include "glut.h" #include "Declare.h" class App { private: static float angle; public: App(); int OnExecute(); void OnLoop(); ...
2
votes
3answers
47 views

How to make variable of nested class static for each instance of parent class?

For instance in the following example, I would like to be able to set x.nest1.n and y.nest1.n to different values, but force x.nest1.n === x.nest2.n and y.nest1.n === y.nest2.n - how to achieve this? ...
0
votes
2answers
22 views

PHP Script Execution and Static Variable Isolation

I have a fairly basic PHP question that I don't seem to be able to find an answer to. When a user visits a website that executes a PHP script, is that script run in isolation from all other running ...
1
vote
1answer
92 views

pthread run function private in class

I'm writing a class with pthreads in it, with it's header, and .cpp definition files. In the .h i have: class test { public: int a; ... private: typedef void ...
0
votes
1answer
72 views

Using c++ static class member to control “mode” of all class instances

This is a simple problem, but I would like suggestions on how to solve it. I have a Policy class with constructor Policy::Policy(const int& mode). Depending on the value of mode, the Policy ...
2
votes
1answer
66 views

Global variable gets different values when used in different static methods

I have the following class that implements static methods that must use a single global array. It is defined as such: //Defined in LockTrack.h file enum LOCK_ID{ LOCKID_0, LOCKID_1, ...
2
votes
1answer
70 views

Access a static member of a class through an object [duplicate]

Possible Duplicate: accessing static member variables I have a symbol inst which is an object of class classy. I need to access a static member of this class through the object’s symbol. I ...
0
votes
2answers
46 views

Calling static class member in PHP

I am trying to get a variable from a php class without having to use "new classname()" This is my code: class myVars { static $varx = null; public function __construct() { ...
0
votes
3answers
190 views

Class declaration in a header file and static variables

Noob question, but would like to understand the following: Imagine I have a multifile project. I'm specifying a class in a header file to be shared among all the files in the project, and I write ...
2
votes
1answer
196 views

Groovy getProperty() on a static member

This question is probably going to illustrate a lack of knowledge on my part about how Groovy classes work, but I have tried to figure this out on my own with no luck. I want to create a getProperty() ...
3
votes
4answers
268 views

Initialization of non-primitive static data type within class in C++

#include <QQueue> #include <QString> class Util { public: static QQueue<QString> links; Util() { } }; Util::links.enqueue("hello world"); How can I do that?
0
votes
3answers
170 views

Can PHP static class variables be defined using functions?

Creating a class with variables like this works fine: class Example { public static $example = array('simple', 'example'); // ... } But, if I use a function, when defining the variable, I ...
0
votes
3answers
159 views

C# Inheritance: Use static field? [duplicate]

Possible Duplicate: C# Inheritance: Static vs. Non-Static Field I am working on creating a class library for a control circuit: private abstract class ControllerBasics { protected ...
4
votes
3answers
1k 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 ...
14
votes
4answers
2k 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.
0
votes
3answers
188 views

is it possible to define the static member function of a class in .cpp file instead of its header file?

i am having a function which should be run only once for all instance of the class.i thought to use the static function calling method. all the web example shows that static function define in the ...
7
votes
4answers
389 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 ...
1
vote
5answers
137 views

Have a class with Static members

I have created a class that has ~12 static memebers and 2 arrays with ~1500 integers stored, so that whenever i need them while coding, i call the class and get the member i want. I was wondering if ...
1
vote
1answer
2k views

PHP Reference to a static variable

I'm not sure if this is possible at all in PHP but this is what I try to do. I have a static variable in my class that I want to have as a reference outside the class. class Foo { protected static ...
1
vote
1answer
473 views

How to declare public static class fields in PHP4

Do you have the solutions that public static class fields in PHP4 var static $field = null; Parse error: syntax error, unexpected T_STATIC, expecting T_VARIABLE
2
votes
4answers
400 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.array = arr ...
47
votes
5answers
27k 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' => ...
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 ...