Tagged Questions

A method is code that performs a task and is associated with a class or an object.

learn more… | top users | synonyms (1)

88
votes
8answers
48k views

Does Java support default parameter values?

I came across some Java code that had the following structure: public MyParameterizedFunction(String param1, int param2) { this(param1, param2, false); } public MyParameterizedFunction(String ...
67
votes
22answers
4k views

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

Should C# methods that can be static be static? We were discussing this today and I'm kind of on the fence. Imagine you have a long method that you refactor a few lines out of. The new method ...
63
votes
3answers
18k views

Static methods in Python?

Is it possible to have static methods in Python so I can call them without initializing a class, like: ClassName.StaticMethod ( )
56
votes
6answers
42k views

How to get current time in Python

Can anybody tell what is the module/method used to get current time ???
55
votes
10answers
48k views

Objective-C: Class vs Instance Methods?

What's the difference between a class method and an instance method? Are instance methods the accessors (getters & setters) while class methods are pretty much everything else? Thanks,
55
votes
17answers
24k views

What is the difference between a method and a function

I am a long-time Applescript user and new shell scripter who wants to learn a more general scripting language like Javascript or Python for performance reasons. I am having trouble getting my head ...
49
votes
14answers
3k views

Is it wrong to use Deprecated methods or classes in Java?

I am using eclipse to develop a web application. Just today I have updated my struts version by changing the JAR file. I am getting warnings at some places that methods are deprecated, but the code is ...
49
votes
10answers
8k views

How to find where a 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 ...
40
votes
14answers
3k views

What's wrong with using $_REQUEST[]?

I've seen a number of posts on here saying not to use the $_REQUEST variable. I usually don't, but sometimes it's convenient. What's wrong with it?
38
votes
19answers
16k 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 ...
37
votes
5answers
5k views

Why are exclamation marks used in Ruby methods?

In Ruby some methods have a question mark (?) that ask a question like "include?" that ask if the object in question is included, this then returns a true/false. But why do some methods have ...
35
votes
4answers
667 views

Final arguments in interface methods - what's the point?

In Java, it is perfectly legal to define final arguments in interface methods and do not obey that in the implementing class, e.g.: public interface Foo { public void foo(int bar, final int baz); ...
35
votes
6answers
832 views

When does it pay off to use S4 methods in R programming

I program regularly in R in a professional context, and I write packages for clients or co-workers as well. Some of the programmers here have a Java background and insist on doing everything the ...
34
votes
3answers
676 views

C# Method Resolution, long vs int

class foo { public void bar(int i) { ... }; public void bar(long i) { ... }; } foo.bar(10); I would expect this code to give me some error, or at least an warning, but not so... What version ...
34
votes
4answers
20k views

Method Syntax in Objective C

Can someone explain this method declaration syntax for me? In this function, the number of rows of a UIPickerView (slot machine UI on the iPhone) is being returned. From my understanding, the ...
33
votes
14answers
3k views

Properties vs Methods

Quick question: When do you decide to use properties (in C#) and when do you decide to use methods? We are busy having this debate and have found some areas where it is debatable whether we should ...
28
votes
13answers
21k views

Cannot refer to a non-final variable inside an inner class defined in a different method

Edited: I need to change the values of several variables as they run several times thorugh a timer. I need to keep updating the values with every iteration through the timer. I cannot set the values ...
28
votes
8answers
5k views

Response.Redirect vs. Server.Transfer

Which is better, Response.Redirect or Server.Transfer in ASP.NET ?
27
votes
5answers
47k views

How do I pass multiple parameters in Objective-C?

I have read several of the post about Objective-C method syntax but I guess I don't understand multiple names for a method. I'm trying to create a method called getBusStops with NSString and ...
26
votes
5answers
8k views

Override to_json in Rails 2.3.5

Update: This issue was not properly explored. The real issue lies within render :json. The first code paste in the original question will yield the expected result. However, there is still a ...
26
votes
15answers
2k 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 ...
25
votes
9answers
5k 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 ...
24
votes
17answers
1k views

What is the most misleading method in the Java Base API? [closed]

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 (boolean ...
24
votes
4answers
7k views

Python: Bind an Unbound Method?

In Python, is there a way to bind an unbound method without calling it? I am writing a wxPython program, and for a certain class I decided it'd be nice to group the data of all of my buttons together ...
24
votes
8answers
17k views

Python - Get Instance Variables

Is there a built-in method in Python to get an array of all a class' instance variables? For example, if I have this code: class hi: def __init__(self): self.ii = "foo" self.kk = "bar" Is ...
23
votes
9answers
4k views

Java this.method() vs method()

Is there any difference between calling this.method() and method() (including performance difference)?
21
votes
4answers
8k views

Getting the name of the current executing method

Is there a way to get the name of the currently executing method in Java?
20
votes
6answers
951 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 ...
20
votes
4answers
7k views

What's the difference between anonymous methods (C# 2.0) and lambda expressions (C# 3.0)?

What is the difference between anonymous methods of C# 2.0 and lambda expressions of C# 3.0.?
19
votes
6answers
7k views

C# - new keyword in method signature

While performing a refactoring, I ended up creating a method like the example below. The datatype has been changed for simplicity's sake. I previous had an assignment statement like this: MyObject ...
18
votes
5answers
19k views

Java synchronized methods: lock on object or class

The Java Tutorials say: "it is not possible for two invocations of synchronized methods on the same object to interleave." What does this mean for a static method? Since a static method has no ...
17
votes
3answers
291 views

Scala: 9 ways to define a method?

So i've been trying to puzzle through the various ways you can define stuff in scala, complicated by my lack of understanding of the way {} blocks are treated: object NewMain extends Thing{ def ...
17
votes
2answers
457 views

Why is Main method private?

New console project template creates a Main method like this: class Program { static void Main(string[] args) { } } Why is it that neither the Main method nor the Program class need to ...
16
votes
4answers
593 views

What is the difference between new Some::Class and Some::Class->new() in Perl?

Many years ago I remember a fellow programmer counselling this: new Some::Class; # bad! (but why?) Some::Class->new(); # good! Sadly now I cannot remember the/his reason why. :( Both forms ...
16
votes
5answers
8k views

Can I invoke an instance method on a Ruby module without including it?

Background: I have a module which declares a number of instance methods module UsefulThings def get_file; ... def delete_file; ... def format_text(x); ... end And I want to call some of ...
15
votes
1answer
2k views

Replacing the 'auto_link' method in Ruby on Rails 3.1

I am using Ruby on Rails 3.0.7 and I know that in the 3.1 version there will be anymore the auto_link method (see the actionpack/lib/action_view/helpers/text_helper.rb for RoR 3.1). There is another ...
14
votes
2answers
420 views

How to properly document S4 methods using roxygen2

I've seen some discussions in SO and other places regarding how this should be or will be done in future versions of Roxygen2. However, I am stuck. How should I go about documenting a S4 generic, as ...
14
votes
4answers
175 views

Assigning a function to an object attribute

Based on my understanding of Python's data model, and specifically the subsection "Instance Methods", whenever you read an attribute whose value is of type "user-defined function", some magic kicks in ...
14
votes
4answers
256 views

When to use GetXXX() method and when a Getter property

There are some .NET libraries which use methods for accessing object data instead of getters i.e HttpWebResponse.GetResponseStream(). Also there are examples of accessing an stream by a property i.e ...
14
votes
7answers
3k views

Why are C# interface methods not declared abstract or virtual?

C# methods in interfaces are declared without using the virtual keyword, and overridden in the derived class without using the override keyword. Is there a reason for this? I assume that it is just ...
14
votes
15answers
478 views

is it better practice to return a complex object or use reference/out parameters?

I'm putting together a method which is supposed to evaluate the input and return true if all conditions are met or false if some test fails. I'd also like to have some sort of status message available ...
14
votes
3answers
2k views

How to detect unused methods and #import in Objective-C

After working a long time on an iPhone app, I realized that my code it's quite dirty, containing several #import and methods that are not called or useful at all. I would like to know if there's any ...
14
votes
3answers
3k views

Python-like list comprehension in Java

Since Java doesn't allow passing methods as parameters, what trick do you use to implement Python like list comprehension in Java ? I have a list (ArrayList) of Strings. I need to transform each ...
13
votes
2answers
770 views

Why is it not allowed in Java to overload Foo(Object…) with Foo(Object[])?

I was wondering why it is not allowed in Java to overload Foo(Object[] args) with Foo(Object... args), though they are used in a different way? Foo(Object[] args){} is used like: Foo(new ...
13
votes
9answers
283 views

What the difference between `return;` and no return?

Is there a difference between: function someMethod( $someArg ) { // some code return; } and function someMethod( $someArg ) { // some code // no return } Both have NULL as 'return ...
13
votes
2answers
604 views

Howto get all methods of a python class with given decorator

How to get all methods of a given class A that are decorated with the @decorator2? class A(): def method_a(self): pass @decorator1 def method_b(self, b): pass ...
13
votes
4answers
609 views

Delphi: Prevent method names from appearing in exe

I am writting some class, that is for handling security in my exe (checking serials, trial date check etc). After I compile exe even in Release build with all debug and RTTI generation turned off, ...
13
votes
3answers
759 views

Which overload will get selected for null in Java?

If I write this line in Java: JOptionPane.showInputDialog(null, "Write something"); Which method will be called? showInputDialog(Component parent, Object message) showInputDialog(Object message, ...
13
votes
5answers
1k 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 ...
12
votes
4answers
4k views

How to check whether an object has certain method/property?

Using dynamic pattern perhaps? You can call any method/property using the dynamic keyword, right? How to check whether the method exist before calling myDynamicObject.DoStuff(), for example?

1 2 3 4 5 72