Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

129
votes
21answers
35k views

In Java, does return trump finally?

If I have a try/catch block with returns inside it, will the finally block be called? For example: try { something(); return success; } catch (Exception e) { return ...
65
votes
4answers
1k views

Why main does not return 0 here?

I was just reading ISO/IEC 9899:201x Committee Draft — April 12, 2011 in which i found under 5.1.2.2.3 Program termination ..reaching the } that terminates the main function returns a value of ...
33
votes
7answers
9k views

return statement vs exit() in main()

Should I use exit() or just return statements in main()? Personally I favor the 'return' statements 'cause I feel it's like reading any other function and the flow control when I'm reading the code is ...
31
votes
12answers
22k views

How to return multiple objects from a Java method?

I want to return two objects from a Java method and was wondering what could be a good way of doing so? The possible ways I can think of are: return a HashMap (since the two Objects are related) or ...
27
votes
6answers
8k views

Returning from a finally block in Java

I was surprised recently to find that it's possible to have a return statement in a finally block in Java. It seems like lots of people think it's a bad thing to do as described in 'Don't return in a ...
24
votes
7answers
713 views

how to “return an object” in C++

I know the title sounds familiar as there are many similar questions, but I'm asking for a different aspect of the problem (I know the difference between having things on the stack and putting them on ...
20
votes
7answers
801 views

Is return an operator or a function?

This is too basic I think, but how do both of these work? return true; // 1 and return (true); // 2 Similar: sizeof, exit My guess: If return was a function, 1 would be erroneous. ...
17
votes
9answers
38k views

How can I return multiple values from a function in C#?

I read the C++ version of this question but didn't really understand it. Can someone please explain clearly if it can be done and how? Thanks, Ash
16
votes
2answers
352 views

Is non-local return in Scala new?

A colleague just showed me this and I was surprised that it compiled at all: def toUpper(s: Option[String]): String = { s.getOrElse(return "default").toUpperCase // ^^^^^^ // a return ...
15
votes
5answers
4k views

What's the best way to return multiple values from a function in Python?

I have a function where I need to do something to a string. I need the function to return a boolean indicating whether or not the operation succeeded, and I also need to return the modified string. ...
12
votes
7answers
481 views

PHP return(value); vs return value;

Is there any difference between return($var); and return $var; other then wrapping it in parentheses?
12
votes
3answers
908 views

Enumerable.Empty<T>() equivalent for IQueryable

When a method returns IEnumerable<T> and I do not have anything to return, we can use Enumerable.Empty<T>(). Is there an equivalent to the above for a method returning IQueryable<T> ...
11
votes
6answers
453 views

Javascript: try/catch return statement

How a return statement inside a try/catch block works? function example() { try { return true; } finally { return false; } } I'm expecting the output of this ...
11
votes
13answers
792 views

Is returning early from a function more elegant than an if statement?

Myself and a colleague have a dispute about which of the following is more elegant. I won't say who's who, so it is impartial. Which is more elegant? public function set ...
10
votes
13answers
2k views

Can a constructor return a NULL value?

I know constructors don't "return" anything but for instance if I call CMyClass *object = new CMyClass() is there any way to make object to be NULL if the constructor fails? In my case I have some ...
10
votes
4answers
318 views

Multiple returns: Which one sets the final return value?

Given this code: String test() { try { return "1"; } finally { return "2"; } } Do the language specifications define the return value of a call to test()? In other ...
8
votes
7answers
286 views

Why doesn't C code return a struct?

While it's very handy, I very rarely, if ever, come across functions that return structs (or unions) in C, whether they are dynamically linked functions or statically defined functions. They instead ...
8
votes
7answers
252 views

How do I return from a function inside a lambda?

Consider the following toy code to determine whether a range contains an element: template<typename Iter, typename T> bool contains1(Iter begin, Iter end, const T& x) { for (; begin != ...
8
votes
14answers
1k views

PHP system() - return status is always 0

I need to get the following scripts running. // File: script_a.php <?php exit(1); ?> // File: script_b.php <?php system('php script_a.php', $return); var_dump($return); ?> ...
8
votes
8answers
6k views

Why default return value of main is 0 and not EXIT_SUCCESS?

The ISO 1998 c++ standard specifies that not explicitly using a return statement in the main is equivalent to use return 0. But what if an implementation has a different standard "no error" code, for ...
7
votes
2answers
594 views

What if I write return statement in constructor?

What if I write return statement in constructor? Is it standard conformant? struct A { A() { return; } }; The above code compiles fine, without any error at ideone. But the following code ...
7
votes
7answers
3k views

PHP: Is it possible to return multiple values from a function?

I have a function that should return several values. Is this possible, perhaps with an array? If so, how would I reference that array? Do I have any alternatives to using an array?
7
votes
3answers
239 views

Which is generally faster, a yield or an append?

I am currently in a personal learning project where I read in an XML database. I find myself writing functions that gather data and I'm not sure what would be a fast way to return them. Which is ...
7
votes
5answers
537 views

Is the behavior of return x++; defined?

If I have for example a class with instance method and variables class Foo { ... int x; int bar() { return x++; } }; Is the behavior of returning a post-incremented variable defined?
7
votes
3answers
305 views

Caching IEnumerable

public IEnumerable<ModuleData> ListModules() { foreach (XElement m in Source.Descendants("Module")) { yield return new ModuleData(m.Element("ModuleID").Value); } } ...
7
votes
9answers
2k views

Does return statement copy values

I am wondering about this because of scope issues. For example, consider the code typedef struct { int x1;/*top*/ int x2;/*bottom*/ int id; } subline_t; subline_t subline(int x1, int ...
7
votes
9answers
1k views

Is it bad practice to use return inside a void method?

Imagine the following code: void DoThis() { if (!isValid) return; DoThat(); } void DoThat() { Console.WriteLine("DoThat()"); } Is it OK to use a return inside a void method? Does it ...
7
votes
2answers
2k views

Implicit return values in Ruby

I am somewhat new to Ruby and although I find it to be a very intuitive language I am having some difficulty understanding how implicit return values behave. I am working on a small program to grep ...
6
votes
2answers
226 views

Changing a method that has “return” and “yield return”

I know it's impossible to use return and yield return in the same method. This is the code that I would like to optimize: public IEnumerable<TItem> GetItems(int data) { if ...
6
votes
4answers
189 views

C/C++; returning multiple data items from a function

I am confused on a couple homework questions I have... Can you return multiple data items from a function by using return()? Can a function only return one value, unless it is a pointer to an array? ...
6
votes
1answer
302 views

What is the difference between using _exit() & exit() in a conventional Linux fork-exec?

I've been trying to figure out how the fork-exec mechanism is used inside Linux. Everything was going on according to the plan until some web pages started to confuse me. It is said that a child ...
6
votes
2answers
201 views

Java Compiler: Stop complaining about dead code

For testing purposes, I often start typing some code in an already existing project. So, my code I want to test comes before all the other code, like this: public static void main(String[] args) { ...
6
votes
3answers
115 views

C++ designing containers and managing list return

I am developing a class which acts as a container for another class. In the container class I must implement a method to get all elements in the collection. My container class uses a std::deque. ...
6
votes
4answers
470 views

java returning const reference of an arraylist

I really admire java features and I don't want to give up using it for the next problem: I have a class that might be inherited, and inside of it is a private ArrayList arr; So the setter function is ...
6
votes
5answers
245 views

c# is this design “Correct”?

I currently have the following if (!RunCommand(LogonAsAServiceCommand)) return; if (!ServicesRunningOrStart()) return; if (!ServicesStoppedOrHalt()) ...
6
votes
9answers
1k views

What does `return 0x1;` mean?

When browsing the source of a project on web I've found some weird to me return statement in main: int main() { /* ... */ return 0x1; } So main is returning 0x1 radix 16, but that's 1 radix ...
6
votes
3answers
815 views

Purpose of “return” statement in Scala?

Is there any real reason of providing the return statement in Scala? (aside from being more "Java-friendly")
6
votes
5answers
302 views

Function returning a tuple or None: how to call that function nicely?

Suppose the following: def MyFunc(a): if a < 0: return None return (a+1, a+2, a+3) v1, v2, v3 = MyFunc() # Bad ofcourse, if the result was None What is the best way to define a function ...
6
votes
17answers
558 views

Which school of reporting function failures is better

Very often you have a function, which for given arguments can't generate valid result or it can't perform some tasks. Apart from exceptions, which are not so commonly used in C/C++ world, there are ...
6
votes
1answer
1k views

Scala return type for tuple-functions

I want to make a scala function which returns a scala tuple. I can do a function like this: def foo = (1,"hello","world") and this will work fine, but now I want to tell the compiler what I expect ...
6
votes
2answers
270 views

See return value in C#

Consider the following piece of code: As you can see we are on line 28. Is there any way to see the return value of the function at this point, without letting the code return to the caller ...
6
votes
3answers
291 views

Java interfaces and return types

Consider I have the following interface: public interface A { public void b(); } However I want each of the classes that implement it to have a different return type for the method b(). Examples: ...
6
votes
4answers
3k views

Using 'return' in a Ruby block

I'm trying to use Ruby 1.9.1 for an embedded scripting language, so that "end-user" code gets written in a Ruby block. One issue with this is that I'd like the users to be able to use the 'return' ...
6
votes
12answers
430 views

C: Returning a void versus returning a double * from a subfunction

I'm working on trying to speed up some general data processing in C. I've written several subroutines of the form: double *do_something(double *arr_in, ...) { double *arr_out; arr_out = ...
6
votes
2answers
2k views

Jquery: wait for callback before returning

I have a javascript function which asks for some ajax data and gets back a JSON object. Then it should return the object. The problem is that I don't know how to make the function return from the ...
6
votes
5answers
6k views

How does one return from a groovy closure and stop its execution?

I would like to return from a closure, like one would if using a break statement in a loop. For example: largeListOfElements.each{ element-> if(element == specificElement){ // do ...
6
votes
4answers
688 views

return eats exception

I found the following behavior at least weird: def errors(): try: ErrorErrorError finally: return 10 print errors() # prints: 10 # It should raise: NameError: name ...
6
votes
13answers
1k views

Only one return statement per method, even in this scenario?

I like the idea of having only one return statement per method. What do you do in this situation though? public static string ChopText(string Text) { if (String.IsNullOrEmpty(Text)) { // ...
5
votes
3answers
82 views

Returning a dictionary in c# in a multi-threaded environment

I have declared a dictionary of dicionary: Dictionary<String, Dictionary<String, String>> values; I have a getter to get a dictionary at a specific index: public ...
5
votes
1answer
78 views

Operator Precedence in C - Returning a Value

I have this statement: return *local_stack_var2++ + 42; Would these be the proper steps when breaking it down: 1. Dereference local_stack_var2 2. Add 42 to the dereferenced local_stack_var2 ...

1 2 3 4 5 18