2
votes
4answers
55 views
Creating an object of the type a static method is called on in an inheritance chain in C#
I am trying to do something like this in C#
public class ParentClass {
public static ParentClass GetSomething()
{
var thing = new // ?????
return thing;
}
}
public class ChildClass : …
0
votes
4answers
101 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 …
0
votes
3answers
105 views
Reproducing static initialization order fiasco in C++
I read about the static initialization order fiasco in C++ relating to crash of the application. I think I understood it but still have few questions:
1) If I want to reproduce this problem, how can I …
1
vote
7answers
169 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?
…
0
votes
2answers
24 views
PHP - Calling a static function from an extended class
Hi,
Let's say I have three classes set up as follows:
abstract Class A {
public static function testfunction()
{
print_r('Hi');
}
}
Class B extends A {
}
Class C extends A {
}
If I call …
1
vote
5answers
77 views
Template with static functions vs object with non-static functions in overloaded operator
Which approach is the better one and why?
template<typename T>
struct assistant {
T sum(const T& x, const T& y) const { ... }
};
template<typename T>
T operator+ (const …
0
votes
2answers
42 views
ASP.NET static variables remain when I stop my application!
I have some static classes in my application.
When I run the application, stop debugging and restart I notice that these variables stay in memory!
So when the application terminates they are left …
0
votes
2answers
20 views
Django on Webfaction: Serving static admin media files - configuration
hi folks,
I having trouble serving Django's static admin files on webfaction.
Here's how I'm currently set up:
I've created a 'Symbolic link to
static-only app', and provided the
link to Django …
2
votes
2answers
88 views
Is there a Static Constrctors/Destructors Help topic
I know in D2010 they have added support for static constructors and destructors.
Where I can find more information about they: syntax and samples?
3
votes
8answers
244 views
C++ static virtual members?
Is it possible in C++ to have a member function that is both static and virtual? Apperantly, there isn't a straight-forward way to do it (static virtual member(); is a complie error), but at least a …
0
votes
2answers
42 views
Nginx location, alias, rewrite, root
I'm serving /foo/bar/ by way of proxypass and want to continue doing so. However, I would like to serve /foo/bar/baz.swf statically from say /var/www/mystatic/baz.swf and so forth.
I was hoping that …
1
vote
3answers
70 views
Static fields question
im trying to understand the get and set properties for fields, and run in to this issue, can somone explaine to me why i had to make the int X field Static to make this work?
using System;
namespace …
0
votes
1answer
105 views
Thought I understood static classes
Trying to construct a helper class that will return an arraylist, but I'm getting the following error, having to do with the xml document I need to create:
Util.oDocument': cannot declare instance …
0
votes
1answer
11 views
Static text within text field?
How can i keep static text within a <input type="text" name="site"> text field, just like the tumblr account ***.tumblr.com here > http://www.tumblr.com/
0
votes
6answers
145 views
Anyone has an alternative to using static methods in a C# interface?
I want to implement a collection, whose items need to be tested for emptiness.
In case of a reference type, one would test for being null. For value types, one has to implement empty testing, and …
