Tagged Questions
The return-value tag has no wiki summary.
67
votes
26answers
6k views
Should functions return null or an empty object?
What is the best practice when returning data from functions. Is it better to return a Null or an empty object? And why should one do one over the other?
Consider this:
public UserEntity ...
54
votes
9answers
2k views
Is it OK not to handle returned value of a C# method? What is good practice in this example?
Out of curiosity...what happens when we call a method that returns some value but we don't handle/use it? And we also expect that sometimes this returned value could be really big. Where that value ...
50
votes
3answers
806 views
C++: is return value a L-value?
Consider this code:
struct foo
{
int a;
};
foo q() { foo f; f.a =4; return f;}
int main()
{
foo i;
i.a = 5;
q() = i;
}
No compiler complains about it, even Clang. Why q() = ... line is ...
33
votes
12answers
5k views
Should I return std::strings?
I'm trying to use std::string instead of char* whenever possible, but I worry I may be degrading performance too much. Is this a good way of returning strings (no error checking for brevity)?
...
32
votes
13answers
3k views
C++ — return x,y; What is the point?
I have been programming in C and C++ for a few years and now I'm just now taking a college course in it and our book had a function like this for an example:
int foo(){
int x=0;
int y=20;
...
30
votes
7answers
7k views
How to elegantly ignore some return values of a MATLAB function?
I was wondering if it was possible to get the nth return value from a function without having to create dummy variables for all n-1 return values before it.
Let's say I have the following function in ...
29
votes
2answers
1k views
How can I index a MATLAB array returned by a function without first assigning it to a local variable?
For example, if I want to read the middle value from magic(5), I can do so like this:
M = magic(5);
value = M(3,3);
to get value == 13. I'd like to be able to do something like one of these:
value ...
27
votes
7answers
2k views
Can I find out the return value before returning while debugging in Eclipse
Is it possible to see the return value of a method after the line has been run and before the instruction pointer returns to the calling function?
I am debugging code I can't modify (read: don't want ...
22
votes
7answers
27k views
Android ACTION_IMAGE_CAPTURE Intent
We are trying to use the native camera app to let the user take a new picture. It works just fine if we leave out the EXTRA_OUTPUT extra and returns the small Bitmap image. However, if we ...
20
votes
3answers
536 views
Why does operator ++ return a non-const value?
I have read Effective C++ 3rd Edition written by Scott Meyers.
Item 3 of the book, "Use const whenever possible", says if we want to prevent rvalues from being assigned to function's return value ...
20
votes
4answers
333 views
C++: How to trigger a compiler error when function return value is unused?
Let's say I have a normalize function defined as:
Vec3f Vec3f::getNormalized() const {
return (*this)/this->length();
}
Is it somehow possible to create a compile-time error if this function ...
19
votes
9answers
16k views
Java Generics: How do i make the method return type Generic?
Consider this example (typical in OOP books):
I have an Animal class, where each Animal can have many friends.
And subclasses like Dog, Duck, Mouse etc which add specific behavior like bark(), quack() ...
18
votes
13answers
687 views
Alternatives to returning NULL
/**
* Returns the foo with the matching id in this list
*
* @param id the id of the foo to return
* @return the foo with the matching id in this list
*/
public Foo ...
18
votes
20answers
2k views
Is returning null bad design?
I've heard some voices saying that checking for a returned null value from methods is bad design. I would like to hear some reasons for this.
pseudocode:
variable x = object.method()
if (x is null) ...
18
votes
3answers
6k views
Inspect the return value of a function in gdb
Is it possible to inspect the return value of a function in gdb assuming the return value is not assigned to a variable?
15
votes
10answers
748 views
How to handle incorrect values in a constructor?
Please note that this is asking a question about constructors, not about classes which handle time.
Suppose I have a class like this:
class Time
{
protected:
unsigned int m_hour;
unsigned ...
15
votes
9answers
6k views
Should Java method arguments be used to return multiple values?
Since arguments sent to a method in Java point to the original data structures in the caller method, did its designers intend for them to used for returning multiple values, as is the norm in other ...
14
votes
13answers
837 views
Is returning null after exception is caught bad design
I always come across the same problem that when an exception is caught in a function that has a non-void return value I don't know what to return. The following code snippet illustrates my problem.
...
14
votes
22answers
1k views
How do you return two values from a single method?
When your in a situation where you need to return two things in a single method, what is the best approach?
I understand the philosophy that a method should do one thing only, but say you have a ...
13
votes
7answers
323 views
Is this a valid function?
What happens to the reference in function parameter, if it gets destroyed when the function returns, then how const int *i is still a valid pointer?
const int* func(const int &x = 5)
{
return ...
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
6answers
1k views
Omit return type in C++11
I've recently found myself using the following macro with gcc 4.5 in C++11 mode:
#define RETURN(x) -> decltype(x) { return x; }
And writing functions like this:
template <class T>
auto ...
13
votes
8answers
1k views
Return a const reference or a copy in a getter function?
What's better as default, to return a copy (1) or a reference (2) from a getter function?
class foo {
public:
std::string str () { // (1)
return str_;
}
const std::string& ...
13
votes
12answers
1k views
Why do most programming languages only give one answer to square root of 4?
Most programming languages give 2 as the answer to square root of 4. However, there are two answers: 2 and -2. Is there any particular reason, historical or otherwise, why only one answer is usually ...
13
votes
7answers
2k views
Can I avoid casting an enum value when I try to use or return it?
If I have the following enum:
public enum ReturnValue{
Success = 0,
FailReason1 = 1,
FailReason2 = 2
//Etc...
}
Can I avoid casting when I return, like this:
public static int ...
12
votes
3answers
201 views
printing a member of a returned struct
I'm having trouble printing a member of a struct that is returned from a function:
#include <stdio.h>
struct hex_string
{
char a[9];
};
struct hex_string to_hex_string_(unsigned x)
{
...
12
votes
4answers
272 views
C++ return type when I don't know if it's temporary
Suppose that Foo is a rather large data structure. How should I write a const virtual function that returns an instance of Foo, if I don't know whether the inherited classes will store the instance of ...
12
votes
5answers
562 views
Calling a non-void function without using its return value. What actually happens?
So, I found a similar question here, but the answers are more about style and whether or not you are able to do it.
My question is, what actually happens when you call a non-void function that ...
12
votes
16answers
635 views
How to indicate that a method was unsuccessful
I have several similar methods, say eg. CalculatePoint(...) and CalculateListOfPoints(...). Occasionally, they may not succeed, and need to indicate this to the caller. For CalculateListOfPoints, ...
11
votes
6answers
2k views
Why does int main() {} compile?
(I'm using Visual C++ 2008) I've always heard that main() is required to return an integer, but here I didn't put in return 0; and and it compiled with 0 errors and 0 warnings! In the debug window it ...
10
votes
3answers
213 views
What are the best practices for exceptions/returning NO/nil in Objective-c?
I'm new to Objective-C, and I see that there are different conventions used about error handling. There are exceptions, but also there are situations where functions are just supposed to return nil in ...
10
votes
7answers
241 views
How to enforce the use of a method's return value in C#?
I have a piece of software written with fluent syntax. The method chain has a definitive "ending", before which nothing useful is actually done in the code (think NBuilder, or Linq-to-SQL's query ...
10
votes
6answers
3k views
How to return a string value from a bash function
I'd like to return a string from a bash function.
I'll write the example in java to show what I'd like to do:
public String getSomeString() {
return "tadaa";
}
String variable = getSomeString();
...
10
votes
1answer
2k views
PHPDoc: @return void necessary?
Is it really necessary do something like this:
/**
* ...
*
* @return void
*/
I have quite a few methods that don't have a return value, and it seems really redundant to put something like this ...
10
votes
10answers
664 views
Don't give away your internals? [C++]
I am reading book called "C++ coding standard" By Herb Sutter, Andrei Alexandrescu and in chapter 42 of this book is an example:(chapter is short so I'm taking the liberty and pasting part of it)
...
10
votes
10answers
1k views
How much more expensive is an Exception than a return value?
Is it possible to change this code, with a return value and an exception:
public Foo Bar(Bar b)
{
if(b.Success)
{
return b;
}
else
{
throw n.Exception;
}
}
to this, ...
10
votes
12answers
547 views
Which style of return should I use?
This is related to conventions used in C#.
I've got a method that has two parameters (X and Y coordinates). These coordinates represent the position at which a "tile" may reside. If a tile resides ...
10
votes
11answers
1k views
String or StringBuilder return values?
If I am building a string using a StringBuilder object in a method, would it make sense to:
Return the StringBuilder object, and let the calling code call ToString()?
return sb;
OR Return the ...
10
votes
5answers
14k views
How can I return a variable from a $.getJSON function
I want to return StudentId to use elsewhere outside of the scope of the $.getJSON()
j.getJSON(url, data, function(result)
{
var studentId = result.Something;
});
//use studentId here
I would ...
9
votes
6answers
281 views
Can the conditional operator lead to less efficient code?
Can ?: lead to less efficient code compared to if/else when returning an object?
Foo if_else()
{
if (bla)
return Foo();
else
return something_convertible_to_Foo;
}
If bla is ...
9
votes
4answers
1k views
Can Qt signals return a value?
Boost.Signals allows various strategies of using the return values of slots to form the return value of the signal. E.g. adding them, forming a vector out of them, or returning the last one.
The ...
9
votes
11answers
703 views
Does C# support multiple return values?
The noob here again. This is a very basic question, and if what I am thinking of doing is complicated/involved, then I don't expect you to go into detail... I've read that this may involve structs or ...
9
votes
9answers
382 views
What is the best way to return two values from a method?
When I have to write methods which return two values, I usually go about it as in the following code which returns a List<string>. Or if I have to return e.g. a id and string, then I return a ...
9
votes
4answers
159 views
Using a constructor for return
Just a quick question.
I've written some code that returns a custom class Command, and the code I've written seems to work fine. I was wondering if there are any reasons that I shouldn't be doing it ...
8
votes
6answers
356 views
Best practice: ref parameter or return value?
Actually I am doing a list as a reference parameter as follows:
public static List ListMethod(List result)
I saw some people doing in this way too:
public static void ListMethod(ref List result)
...
8
votes
1answer
114 views
Returning value from foreach in subroutines
Consider following simple example:
#!perl -w
use strict;
sub max {
my ($a, $b) = @_;
if ($a > $b) { $a }
else { $b }
}
sub total {
my $sum = 0;
foreach (@_) {
$sum += ...
8
votes
3answers
238 views
Extracting the return type from an overloaded function
I want to extract the return type of a function. Problem is, there are other functions with the same name but different signature, and I can not get C++ to select the appropriate one. I know about ...
8
votes
5answers
545 views
Is it Possible to Return a Reference to a Variable in C#?
Can I return a reference to a double value for example?
This is what I want to do:
ref double GetElement()
{
......
// Calculate x,y,z
return ref doubleArray[x,y,z];
}
To use it like this
...
8
votes
11answers
532 views
Should I return null or throw an exception?
I found questions here http://stackoverflow.com/questions/175532/return-null-or-throw-exception and http://stackoverflow.com/questions/1626597/should-functions-return-null-or-an-empty-object, but I ...
8
votes
6answers
4k views
C++ return a “NULL” object if search result not found
I'm pretty new to C++ so I tend to design with a lot of Java-isms while I'm learning. Anyway, in Java, if I had class with a 'search' method that would return an object T from a Collection< T > ...