Tagged Questions
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() {
...
1
vote
4answers
45 views
Java - Inherit static field and change it's value
I'm working on program/game in Java, where I have static utility class with params.
class ParamsGeneral {
public static final int H_FACTOR = 100;
public static int MAX_SCORE = 1000;
...
}
...
-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
2answers
44 views
Workaround to static member inheritance
I'm actually working on a project in which I need a bunch of objects (classes if you prefer, rather than instances) to implement a same behavior. Basically, each "class" would need to provide a way of ...
0
votes
3answers
46 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{
}
...
0
votes
4answers
75 views
static variables in inheritance
public class A
{
public static int i;
}
public class B extends A
{
public static void main(String[] args)
{
System.out.println("print i=" + B.i); // referred to A.i
}
}
My ...
3
votes
3answers
71 views
Do static member functions add an overhead to the class?
I want to provide static helper functions to handle the data type of a class. I considered including them in the class itself. Would they be instantiated for every new class instance or just once?
1
vote
2answers
88 views
How to extend a static class in C#
I'm using Microsoft's Visual Studio unit testing framework (the project does therefore I have to). I'm sorely missing some of the more advanced assertions such as AreElementsEqual you find in MBUnit.
...
0
votes
2answers
50 views
Design - Alternative to not allowed abstract static method
I have an abstract class that contains a static method to check if a string fits to a certain type respectively implementation of AbstractType. If the string fits to a type, an object of the type ...
0
votes
2answers
122 views
Static variable of superclass acting weird in subclass-creation
I'm working on a classic homework program and cannot for the life of me figure out why my static variable in the superclass reacts the way it does..
The program is a bankaccount where I have created ...
0
votes
3answers
90 views
static variable inside member function of base class
i have the following:
class base
{
public
void f();
...
}
void base::f()
{
static bool indicator=false;
.....
if(!indicator)
{
...
1
vote
1answer
35 views
Is it possible to create a static property that is static for the derived class, and not for all classes that derive from it?
I am trying to implement something like this:
$child1_instance1 = new \aae\web\ChildOne();
$child1_instance2 = new \aae\web\ChildOne();
$child2_instance1 = new \aae\web\ChildTwo();
...
0
votes
1answer
81 views
Explicit Slicing a Derived Object
Have a nice day,
I have some class structure for the project I build for my company. At some point, I've seen a "usually unwanted" slicing of derived object could actually make my code efficient. ...
2
votes
1answer
68 views
In python, is there a static equivalent to isinstance?
I want to scan a module (using dir()) and extract all class names (type objects) of classes that extend a certain parent class.
Is there any way to do this without first creating instances that I can ...
4
votes
8answers
108 views
How can I get the Class object in a static method without using the class name?
I have
public class A {
static X s_x = new X(A.class);
}
and
public class B {
static X s_x = new X(B.class);
}
and so on for many classes without any special relationship or ...
-1
votes
2answers
161 views
Issue with static member function and derived class
I have a class with static member function (which is necessary). To be able to use non-static members of the class. I defined a Static_This which is a pointer to the class.
template<class T>
...
3
votes
1answer
70 views
Template inheritance with static properties (Service Locator Pattern)
I've been trying to implement the Service Locator pattern using a templated base class and inheriting from it:
// Header File
namespace one {
template <class I, class N>
class ...
-3
votes
3answers
68 views
Calling a static method of an abstract class in another class
I have a class Employee
import javax.swing.*;
public abstract class Employee {
public static void searchEmp(int id) {
JOptionPane.showMessageDialog(null, "done");
}
}
Now I have ...
1
vote
1answer
61 views
Inheritance model for static variables and methods
I am doing this for Objective C but this is a common behavior among various common languages.
I know that Static variables or methods are not inherited to subclasses, however i would want to know ...
0
votes
2answers
122 views
Java Static variable value can't not be transmitted
I have a homework, in which we should implement a server/client classes, so that we send 1400Bytes packets to the server and we get them back as reply. We must mess the throughput in kbit/s and it ...
0
votes
4answers
105 views
Static member in base class is null when assigned in derived class
I have a base class with a static pointer member. When I assign that static pointer member in a derived class, that static member appears NULL when referenced from the methods of the base class.
This ...
0
votes
2answers
73 views
Subclass-specific static member data
I'm trying to implement a family of classes who keep track of how many instances exist on a per-class basis. Because all of these classes have this behavior, I'd like to pull it out into a single ...
-3
votes
1answer
66 views
I can't use a static method, but that seems to be reasonable
base class:
abstract class Challenge
{
abstract **static** public function getName();
}
now two classes from it:
class ChallengeType1 extends Challenge
{
public **static** function ...
0
votes
0answers
86 views
PHP Extend class with static variables and functions
I have a problem, well, many but this one in particular involves the following:
I have a Database connection class that I've constructed - carefully taking bits and pieces from what I know and from ...
0
votes
3answers
107 views
Creating a new instance of class being called rather than parent
How can I return an instance of the class being called, when the method is in a parent class.
Eg. In the example below, how can I return an instance of B if I call B::foo();?
abstract class A
{
...
1
vote
2answers
113 views
PHP Static class variables, inheritance, and garbage collection
I am having some memory problems with a script that uses objects set up with inherited static variables like this.
class a
{
public static $a = "a";
}
class b extends a
{
private ...
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
votes
2answers
196 views
accessing a class's static method from an instance variable?
Is there a way to access a class's static methods/variables from an instance variable? I've tried searching for an answer, but my searches only find why you can't access an instance method/variable ...
8
votes
5answers
141 views
java static initialization with inheritance
public class Main {
public static void main(String[] args) {
System.out.println(B.x);
}
}
class A {
public static String x = "x";
}
class B ...
0
votes
3answers
163 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
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
4answers
241 views
Java Static Method: Create object of current type
I have an abstract class type that I'm inheriting from to create new classes. As an equivalent example, consider:
public abstract class BaseClass {
public BaseClass(String input)
{
...
0
votes
1answer
36 views
Import or Implement Reusable Statics? [closed]
Option #1:
public class WidgetStatics {
public static final String FIZZ = "fizz";
public static final String BUZZ = "buzz";
}
And then:
import com.me.myorg.myapp.WidgetStatics
public ...
2
votes
2answers
95 views
Does C# generate concrete implementation for unused template parameters?
If I have
abstract class Base<TSub>
{
protected static List<TSub> MyStaticList;
}
class DerivedA : Base<DerivedA>
{
}
class DerivedB : Base<DerivedB>
{
}
I get two ...
6
votes
2answers
327 views
C# Alternative to virtual static methods and static sub classes
Whenever I read questions RE this, or a similar topic of static inheritance, the replies are usually that this is not supported (we know that), and the reason is given as being because this is a poor ...
2
votes
6answers
88 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
213 views
how to have access to instance members in a static method
I'm trying to create classes to encapsulate validation and logic for objects like Email , URL , phone number and so on . in the first try I found that I'm repeating the same code in all classes ...
0
votes
0answers
42 views
Can a static property/method override abstract property/method?
I have an abstract Key class. Within that class, I have an abstract DummyKey property. Now, this Key class needs to be implemented in various projects. I do not want to provide the implementation, it ...
3
votes
2answers
348 views
C# GetMethod doesn't return a parent method
I have the following class tree:
public class A
{
public static object GetMe(SomeOtherClass something)
{
return something.Foo();
}
}
public class B:A
{
public static new ...
3
votes
1answer
61 views
Unexpected Behaviour of inherited static member
I was just playing around with static and inheritance to see what can and cannot be done. I have read before, that static methods cannot be overwritten, they can simply be hidden. That is why I tried ...
1
vote
5answers
200 views
Reuse superclass static fields
I have this class declaration
abstract class A {
protected static String message = "Hello";
}
And I want this field to get propagated to subclasses, to avoid typing protected static String ...
4
votes
1answer
301 views
access java base class's static member in scala
Ihave some codes written in Java. And for new classes I plan to write in Scala. I have a problem regarding accessing the protected static member of the base class. Here is the sample code:
Java ...
5
votes
3answers
546 views
log4net logger defined in base class
I want to build my log4net logger in my MVC controller abstract base class like so:
protected static readonly ILog Log = LogManager.GetLogger(typeof(AuthorizedController));
In this manner I can ...
0
votes
3answers
154 views
Java inheritance: “Casting” variable in abstract class as static
I'm seeking to reduce redundant code in my Android project. Let me tell you what I already have.
I have two main groups of views. One is called MapView, which is a View containing a bitmap that can ...
3
votes
2answers
456 views
PHP: “Call to undefined method” … but method is defined?
I have a class Database.php, which is an abstract Singleton class:
<?php
abstract class Database
{
protected static $_instance;
...
public static function instance()
{
...
0
votes
1answer
410 views
Access static variable in non-static method + Inheritance
I have the following stucture
class Foo
{
public static $a = "parent";
public static function Load()
{
return static::$a;
}
public function Update()
{
return ...
2
votes
2answers
131 views
Static class-dependant object initialization from child classes
I have this parent abstract class which defines an Apache logger static object. Something like this:
import org.apache.log4j.Logger;
public abstract class A {
private final static Logger ...
1
vote
3answers
67 views
Extended classes and static values
I'm trying to understand how PHP manages memory and variables with static methods in extended classes. I've got three classes one entitled Model, User1, User2. Hence:
class Model {
static public ...
1
vote
2answers
119 views
How can I wrap static properties of a base class so that they return a sub class object?
Say I have code out there like this:
public class Base // I cannot change this class
{
public string Something { get; private set; }
public string Otherthing { get; set; }
public static ...
0
votes
1answer
102 views
Static properties in one class set by another
I've been working on a small set of classes in PHP 5.3.x that follow the Active Record pattern. I'm running to an issue, however, when working with static properties. Here's the bit of code I've been ...

