0
votes
1answer
28 views

static variable is not changing. Yii, OOP

I have a code of index action of SiteController static $cid; public function actionIndex() { if(Yii::app()->request->isAjaxRequest) { //return ajax data, includes this ...
1
vote
5answers
75 views

Do static members enter objects?

This is certainly an elementary question, but I must ask to clarify an issue of mine. If a class member is made static, it may be accessed without instantiation, with a syntax like class.member. When ...
2
votes
2answers
27 views

how to use an static var from child class in its parent class with an static method

I want to get the value of the static var that was redeclared in the subclass : class A { private static $echo_var = 'PARENT_ECHO' ; public static function e() { ...
0
votes
4answers
94 views

Static vs New Object

public class A { public void doSomething() { /*code*/} } The doSomething method is in no way referencing the state of object A so by that logic it could be static. What is the difference ...
0
votes
3answers
37 views

How can I reference a variable in one JFrame from another JFrame?

I have a JFrame with buttons and when I click one of the buttons an integer decreases by 1. I am trying to show the integer in another JFrame but when I reference it I get an error saying non static ...
-3
votes
2answers
59 views

Java static fields not working with inheritance

Alright, this is probably something simple, but I just can't get it. package foo.foo.foo; public class Vars { public static boolean foo = false; } Alright, so that's my Vars class. I then ...
0
votes
3answers
49 views

php self() with current object's constructor

What's the proper way to get new self() to use the current instance's constructor? In other words, when I do: class Foo{ function create(){ return new self(); } } Class Bar extends Foo{ } ...
-1
votes
1answer
31 views

Why private field is accessible?

C#. Why private field is accessible ? internal class MyClass { private int someInt; public static StaticMethod() { new MyClass().someInt = 3; } }
-1
votes
3answers
66 views

Get a static java method to return highest variable value

In my program I declared a static variable: private static int nextID = 0; Which is used in my constructor Vehicle() { idNum = nextID++ } Basically, what this is doing is ensuring that ...
0
votes
1answer
44 views

what is the terminology or idiom for using an object of the class to get a reference to its contents?

A previously question on static references was closed as vague. In any event, I now know the the answer (and will hopefully remember the "solution"), but what is this technique called? The most ...
1
vote
3answers
81 views

Why can't I initialise static variables in initializer list?

I was trying to use the following code: class Test { private: static int x; public: Test(int i) : x(i) {} }; main() { Test a(5); } But, then I got the error: ‘int Test::x’ is a static ...
3
votes
5answers
101 views

extend an object returned by a static method in java

I have the following problem. I have a static method of a library class (that I cannot change) like this: Loader.loadModel() it returns an object of type Model. I have also created a subclass of ...
0
votes
2answers
81 views

Declaring static/static-const data members in source files

I read the reason for defining static/static const data members in the source file is because if they were in the header file and multiple source files included the header file- the definitions would ...
4
votes
3answers
90 views

Converting procedural PHP into object-oriented PHP

I currently have a fairly large application written entirely with procedural PHP. I am looking to further my PHP experience and recode a majority of my application using object-oriented techniques. ...
0
votes
1answer
35 views

How to get list of all static members of some class in javascript

I would like to get list of all static members of some class. For example: I would like to get all static members of Object (like Object.create if avalible and so on). How can I do that? Example: ...
-1
votes
2answers
56 views

Statics and OOP help in Java [closed]

Every time I call private static sClass x = new sClass() in say, aClass, I want to store information(array) in the sClass from aClass such as the time the aClass was instantiated. Is this even ...
1
vote
1answer
101 views

Access static variable from static function [duplicate]

It is very important that my function is static, I need to access and modify another static/non-static class member in order to print it out later. How can I do that? Flow Class is initiated ...
0
votes
1answer
34 views

is there a universal definition for “static class”?

I thought I knew everything that was to know about static classes until I switch to java and learned that just about everything that cannot be done with a static class in C#, can be done in Java. So ...
1
vote
4answers
105 views

Class with no data members in C++

This may not be a question specific to C++ and more to do with Object oriented programming. I am new to this and I am doubtful of my design. I have a class Parser that basically implements many ...
2
votes
8answers
156 views

static member inside constructor in C#

Usually we know in order to access a static variable we need not to create an instance of the class. We can directly do like classname.staticvariable. And in order to access the static variable inside ...
2
votes
4answers
179 views

static variable inside static method doesn't change

I want to create a class which has a static method that returns a reference to a static variable(which is declared inside the method). What I want is when calling the method to get the reference of ...
1
vote
2answers
88 views

Static class / constant field heirarchy - can it be done?

What I'm trying to achieve is a nice abstraction for my database tables. The result I'm looking for is to be able to do this: System.out.println(Table.Appointment); // prints the name of the table ...
1
vote
4answers
157 views

how main() can call non-static nethods in Java?

Well. I am new to Java. I know that main needs to be static method. But I have read that an static method can call only other static methods ? Then how come we can call non-static methods ? Its a ...
1
vote
2answers
91 views

Static variables not being inherited in child classes

For some reason I cannot get static variables to be inherited in child classes. The following snippet seems ok, but does not work. abstract class UserAbstract { // Class variables protected ...
8
votes
4answers
283 views

Destructor of a static object constructed within the destructor of another static object

I have some problems with destructor, in next code: #include <stdlib.h> #include <cstdio> class Foo2 { public: Foo2() { printf("foo2 const\n"); } ~Foo2() { ...
0
votes
4answers
78 views

When we can have class and method as static? [closed]

When we can have class and method as static? Anybody please help me with some example...
2
votes
4answers
67 views

Accessing a function through inclusion vs declaring static

I have a header file I want to include in another cpp file. I want to know what is the difference if I write the header file like this, #include <iostream> #include <string> using ...
0
votes
2answers
87 views

Procedural functions vs Static methods. Which is better or avoid both? [closed]

I am just looking through some core files of Codeigniter and I see that it uses some what you might call procedural functions scattered all over the place like to get the instance of the config class ...
2
votes
2answers
64 views

Should I make these methods non static

I am just practising Java OOPs concepts by building a dummy project of Library management system. Initially I had classes for Book, Customer, Administrator (with Customer, Administrator extending ...
0
votes
3answers
100 views

What's the performance hit for accessing a static random instance [duplicate]

Possible Duplicate: Random number generator only generating one random number class System.Random .. why not static? I have a public static class called RandomGeneratorwhich only has one ...
0
votes
2answers
139 views

How to create a static field in javascript class

I can define a class in JavaScript like this: var appender = function (elements, func) { this.Prop = something; staticProp = something_else; }; Am I right? Well then, how can I create a ...
0
votes
4answers
82 views

Should members of a class be turned static when more than one object creation is not needed?

class AA { public: AA (); static void a1 (); static std :: string b1 (); static std :: string c1 (unsigned short x); }; My class won't have different ...
0
votes
1answer
73 views

Accessing class constants from instance stored in another class

I have a class defined which has several constants defined through `const FIRST = 'something'; I have instantiated the class as $class = new MyClass() then I have another class that takes a MyClass ...
3
votes
2answers
97 views

c++ - Creating class instance in function and using it later

Can I do this: static Toggle GetAutoUpdatedToggle(DWORD key, bool initialState = false) { Toggle tempToggle(key, initialState); autoUpdateToggles.push_back(tempToggle); //This is static ...
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 = ...
3
votes
2answers
160 views

Matlab equivalent to calling inside static class

Confer the following code: classdef highLowGame methods(Static) function [wonAmount, noGuesses] = run(gambledAmount) noGuesses = 'something'; wonAmount = ...
1
vote
4answers
284 views

Static Methods and static variables, bad design practise? [duplicate]

Possible Duplicate: Why are static variables considered evil? Having studied Object oriented programming and design in college a few years back, i remember lecturers getting pretty angry at ...
0
votes
3answers
164 views

C# forcing static data member in subclass

Is it possible to force a static data member in inherited subclasses? Here is my problem/thought process: I want to make a "GameObject' base class that all other objects inherit from to lend to ...
0
votes
6answers
64 views

add a static variable and a non static variable together in java

Can we add a static variable and a non static variable together in java? For example, class Evolve{ static int i = 1; static int j = 2; int x = 3; static int y = 6; public static ...
0
votes
1answer
91 views

Python - Accessing subclasses' variables from parent class while calling classmethods

i'm trying to build sort of a "mini django model" for working with Django and MongoDB without using the norel Django's dist (i don't need ORM access for these...). So, what i'm trying to do is to ...
0
votes
1answer
85 views

PHP OO Design: extend static class or instance class?

I have an application which defines certain actions on common object types. For example, you can have forum post and images. For each forum post and image you can do the following actions: recommend, ...
0
votes
1answer
121 views

How to iterate over array of objects in PHP? With object method, class static method?

I need to check to see if any object in an array of objects contains a certain variable value. I.E. if $object_array contains 15 $object objects, I want to know if even one of them have their $type ...
1
vote
3answers
174 views

How to use an enum in a static and non-static way

I have 2 activities, ActivityA and ActivityB, with 3 buttons each. I show ActivityA on one connected device and ActivityB on the other connected device. The buttons can each be in 1 of 2 states but ...
-2
votes
2answers
96 views

data member local to member function: what static languages can do such thing? [closed]

One thing that I find most annoying about OOP is that whenever you need a new variable in a member function, and you need that this variable "attaches" the object on which this function is called, you ...
3
votes
3answers
645 views

How to use constructor for java static array initialization?

I have the following class, listed below with static field of arrays. Could you please tell/explain how can I create constructor to initialize all of the arrays and pass it to the public static void ...
2
votes
6answers
89 views

Why can't I instantiate an instance of an extended class in Java?

What I'm simply trying to do is extending a class from LinkedList. Here is my code: import java.util.*; class Test { public static void main( String [] args ) { OrderedLinkedList ...
0
votes
2answers
346 views

static variable for each derived class [duplicate]

Possible Duplicate: Overriding static variables when subclassing I have a set of classes that are all derived from a base class. Any of these derived classes declare the same static ...
1
vote
1answer
260 views

PHP Static Methods/Singleton Pattern

I am designing a new architecture for my company's software product. I am fairly new to unit testing. I read some horror stories about the use of singleton and static methods, but I am not clearly ...
1
vote
1answer
237 views

Why does DrJava return a Static Error?

I use dr java for linux to run my code. I've been running into a bunch of errors recently while running this simple program. The code compiles fine but whenever I run the java file, I get the error; ...
0
votes
4answers
130 views

What is the point of a non-static method in a static class?

I took a look over this question and I was wondering the opposite situation. Why would be needed? Someone said there that: Why would you have a "shared method" that is in a class, not in a ...

1 2 3 4 5