Tagged Questions

3
votes
8answers
159 views

What is an alternative to having static abstract methods?

I'm having some problems trying to figure out how to solve a problem without being able to have static method in an abstract class or interface. Consider the following code. I have many Wizards that …
2
votes
7answers
166 views

C++: duplicated static member?

I have a class which needs to be a singleton. It implemented using a static member pointer: class MySinglton { public: static MySinglton& instance() { ... } private: static MySinglton* …
2
votes
1answer
36 views

Static (iPhone) libraries, distribution, and dependencies

(Presumably the following question is not iPhone specific, aside from the fact that we would likely use a Framework or dynamic library otherwise.) I am building a proprietary iPhone SDK for a client, …
2
votes
4answers
153 views

Why can I not perform a sizeof against a static char[] of another class?

Why does the following code generate a compile error? Edit: My original code wasn't clear - I've split the code up into separate files... First.h class First { public: static const char* …
4
votes
3answers
101 views

How to overcome neatly the fact that static attributes can’t be overrriden?

I want to implement an aplication where I have various Objects that can be interpreted as XML Strings. First I thought of making an interface which made each object implement two methods: public …
1
vote
3answers
71 views

How to handle a static final field initializer that throws checked exception

Hello all, I am facing a use case where I would like to declare a static finalfield with an initializer statement that is declared to throw a checked exception. Typically, it'd look like this: …
1
vote
6answers
107 views

How to declare a static variable but not define it

Some times we need to pre-declare a static variable and then use it. But the variable name of this declaration may be wrong, and the compiler can not detect it, oops! Example: /* lots of codes */ …
3
votes
6answers
126 views

Is it possible to see via which child class was a parent’s static method called in Java?

A little background first. I am looking into the possibility of implementing Ruby's ActiveRecord in Java as cleanly and succinctly as possible. To do this I would need to allow for the following type …
0
votes
3answers
54 views

PHP: How to return an instantiated class object, given a class name?

They say that eval() is evil. I want to avoid the use of the eval() line using proper PHP5 functionality. Given a class name in a static class method, how do I make it return a real object? class …
0
votes
2answers
40 views

PHP: How to pass existing database connection to static class methods?

I have a set of static class methods. I also have an existing database connection in a script stored in an object variable $DB. How do I call those static class methods and let them use that $DB …
1
vote
5answers
71 views

How do I check in PHP that I’m in a static context (or not)?

Hello, Is there any way I can check if a method is being called statically or on an instantiated object? Jamie
0
votes
7answers
146 views

When to use static keyword before global variables?

Can someone explain when you're supposed to use the static keyword before global variables or constants defined in header files? For example, lets say I have a header file with the line: const …
0
votes
3answers
67 views

How to initialize static const pointer in a class ?

class School { static const int *classcapacity; }; This expression is from my exam and it need to get initialized how can i do that ?
1
vote
7answers
195 views

Java: Static Class?

I have a class full of utility functions. Instantiating an instance of it makes no semantic sense, but I still want to call its methods. What is the best way to deal with this? Static class? Abstract? …
1
vote
4answers
115 views

What is the reason for not allowing in C++ a default value for a variable to be a non-static method or member of a class ?

I wanted to know why the default value for a variable for a method of a class, cannot be a non-static method or member of the same class. Is there a reason for that ? Could not the compiler provide …

1 2 3 4 5 37 next
15 30 50 per page