Tagged Questions

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 appear consistent. To be …
30
votes
22answers
2k views

Should C# methods that *can* be static be static?

We were discussing this today and I'm kinda on the fence. Imagine you have a long method that you refactor a few lines out of. The new method probably takes a few local variables from the parent …
22
votes
8answers
5k views

When to Use Static Classes in C#

Here's what MSDN has to say under "When to Use Static Classes": static class CompanyInfo { public static string GetCompanyName() { return "CompanyName"; } public static string …
18
votes
20answers
1k views

Static methods

I've just had an argument with someone I work with and it's really bugging me. If you have a class which just has methods like calculateRisk or/and calculatePrice, the class is immutable and has no …
14
votes
8answers
2k views

What does “static” mean in a C program?

I've seen the word static used in different places in C code; is this like a static function/class in C# (where the implementation is shared across objects)?
14
votes
17answers
2k views

Java - static methods best practices

Let's say I have a class designed to be instantiated. I have several private "helper" methods inside the class that do not require access to any of the class members, and operate solely on their …
13
votes
8answers
328 views

How was the syntax chosen for static methods in Python?

I've been working with Python for a while and I find the syntax for declaring methods as static to be peculiar. A regular method would be declared: def mymethod(self, params) ... return A …
13
votes
17answers
635 views

does Google analytics make a major effect on time to download a static web page?

Hi, I understand that by simply adding a script to the end of the body tag of a html document one makes it processable by Google analytics. My question is, is this likely to have much effect on …
13
votes
13answers
3k views

Best Static Website Generator

In the age of dynamic websites built with layouts and templates, nobody wants to write plain old repetitive static html anymore. But now that you can outsource dynamic features to services like …
12
votes
3answers
534 views

C# : So if a static class is bad practice for storing global state info, what’s a good alternative that offers the same convenience?

Hi, I've been noticing static classes getting a lot of bad rep on SO in regards to being used to store global information. (And global variables being scorned upon in general) I'd just like to know …
10
votes
14answers
366 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 static int …
10
votes
11answers
2k views

Difference between static class and singleton pattern?

What real (i.e. practical) difference exist between a static class and a singleton pattern? Both can be invoked without instantiation, both provide only with one "instance" and neither of them is …
10
votes
3answers
2k views

What is the lifetime of a static variable in a C++ function?

If a variable is declared as static in a function's scope it is only initialized once and retains its value between function calls, we all know that but what exactly is its lifetime? When do its …
10
votes
9answers
1k views

Why can’t I declare static methods in an interface?

The topic says the most of it - what is the reason for the fact that static methods can't be declared in an interface? public interface ITest { public static String test(); } The code above …
9
votes
7answers
158 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 rather than …

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