Tagged Questions

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 …
16
votes
16answers
906 views

Method Overloading. Can you overuse it?

What's better practice when defining several methods that return the same shape of data with different filters? Explicit method names or overloaded methods? For example. If I have some Products and …
11
votes
16answers
534 views

Most awkward/misleading method in Java Base API ?

I was recently trying to convert a string literal into a boolean, when the method "boolean Boolean.getBoolean(String name)" popped out of the auto-complete window. There was also another method …
9
votes
7answers
169 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 …
9
votes
6answers
942 views

How to find where a ruby method is defined (at runtime)?

We recently had a problem where, after a series of commits had occurred, a backend process failed to run. Now, we were good little boys and girls and ran rake test after every check-in but due to some …
8
votes
5answers
187 views

Priority when choosing overloaded template functions in C++

I have the following problem: class Base { }; class Derived : public Base { }; class Different { }; class X { public: template <typename T> static const char *func(T *data) { // Do …
7
votes
9answers
421 views

What’s the correct alternative to static method inheritance (C#)

I understand that static method inheritance is not supported in C#. I have also read a number of discussions (including here) in which developers claim a need for this functionality, to which the …
6
votes
5answers
337 views

C++ Style: Prefixing virtual keyword to overridden methods

I've been having a discussion with my coworkers as to whether to prefix overridden methods with the virtual keyword, or only at the originating base class. I tend to prefix all virtual methods (that …
6
votes
10answers
487 views

Method vs Property in C# - what’s the difference [closed]

Possible Duplicate: Properties vs Methods In method you can type some code and in properties too. For example I have a property Name. When class name changes I would like to get some data …
5
votes
5answers
144 views

Faking method attributes in PHP?

Is it possible to use the equivalent for .NET method attributes in PHP, or in some way simulate these? Context We have an in-house URL routing class that we like a lot. The way it works today is …
5
votes
11answers
323 views

Unit testing private code

Hello all I am currently involved in developing with C# - Here is some background: We implement MVP with our client application and we have a cyclomatic rule which states that no method should have a …
5
votes
24answers
900 views

How many lines should a method typically have? [closed]

Possible Duplicate: How many lines of code is too many? I'm not really that new to programming but I am new to standards as a whole. Any professionals here care to share what's the standard …
5
votes
8answers
298 views

C#, Writing longer method or shorter method?

I am getting two contradicting views on this. Some source says there should be less little methods to reduce method calls, but some other source says writing shorter method is good for letting the JIT …
5
votes
4answers
2k views

How to get current time in Python

Can anybody tell what is the module/method used to get current time ???
4
votes
8answers
289 views

In what situations is static method a good practice?

I have read the following discussions: http://stackoverflow.com/questions/538870/java-static-methods-best-practices , and http://stackoverflow.com/questions/658407/static-methods It seems that …

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