Tagged Questions

3
votes
8answers
221 views

When NOT to use the static keyword in Java?

When is it considered poor practice to use the static keyword in Java on method signatures? If a method performs a function based upon some arguments, and does not require access t …
0
votes
5answers
113 views

java singleton pattern, should all variables be class variables?

If a class implements a singleton pattern, should all the variables be declared static? Is there any reason they shouldn't be declared static? Does it make a difference?
0
votes
4answers
96 views

Detect main has started?

Might sound like an odd question. I suppose I can always have the main specifically set something that can be detected, but ideally I'd like to be able to have separate libs which …
9
votes
7answers
151 views

Behaviour of final static method

I have been playing around with modifiers with static method and came across a weird behaviour. As we know, static methods cannot be overridden, as they are associated with class …
1
vote
0answers
25 views

Windows 7 unidentified network direct cable connection [closed]

Hi, I have 2 computers. Both are Windows 7 and are connected directly by a cable. There's no DHCP server and both have static IP (192.168.2.2 and 192.168.2.3). Windows 7 defines …
0
votes
2answers
32 views

Testing static classes with PHPUnit

Hi, I've got a set of classes I'm trying to test. Class A depends on Class X. Class X contains functions which do random things and things with databases. I've created a mock vers …
0
votes
3answers
103 views

Using a non-static class member inside a comparison function

Hello everyone, I'm currently developing a syntaxic analyser class that needs, at a point of the code, to sort structs holding info about operators. Each operator has a priority, …
1
vote
5answers
99 views

file scope and static floats

Hello there. I've run into an interesting problem in an AI project of mine. I'm trying to format some debug text and something strange is happening. Here's a block of code: fl …
1
vote
3answers
79 views

C# - Expose a Static Class inside a normal class?

Here is an easy example: ASP.NET provides several static classes based around the membership provider. We are forever using them in our pages. We also have a need to extend the …
0
votes
2answers
23 views

How to configure routing for a java web app

Is there an easy way to rout all requests (except a few specific cases) for url "mysite/" to path "mysite/index.html?" Is it possible to do it only by editing web.xml file?
6
votes
1answer
116 views

Are there other languages besides D with static if?

I think D's static if is an interesting language feature. That prompts my question: Are there are other examples of compiled languages in which the compiler has a strong notion of …
3
votes
2answers
39 views

Does C# resolve dependencies amongy static data member automatically?

If one static data member depends on another static data member, does C#/.NET guarantee the depended static member is initialized before the dependent member? For example, we have …
10
votes
14answers
343 views

Java: When to make methods static v. instance

I have a Gene class that keeps track of genes. Gene has a method for calculating the distance between two genes. Are there any reasons to make it static? Which is better? public …
1
vote
4answers
128 views

How should C++ methods that manipulate static data members be defined?

I have a C++ class which contains only static data members. I noticed the compiler is OK if I define the access methods as const, as static, or as "regular" - so all seem to work. …
60
votes
16answers
1k views

Are fluid websites worth making anymore?

Hey guys, I'm making a website now and I am trying to decide if I should make it fluid or not. Fixed width websites are much easier to make and also much easier to make them appea …

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