The return-statement tag has no wiki summary.
0
votes
7answers
62 views
Java boolean method needs extra return statement?
I am starting with java and while I was writing a way to identify whether a number was prime I wrote a method like this
public static boolean checkPrime(int n){
int x = 2;
while (((n % x) != ...
0
votes
3answers
59 views
What does it mean to return a value?
I'm fairly new to programming, and I'm confused about what it means exactly to return a value. At first, I thought it meant to output what value is being returned, but when I tried that in my own ...
0
votes
2answers
300 views
Cannot return a value from method whose result type is void error
I am trying to take the user input from one method and use it in another. I am confused about the cannot return a value from method whose result type is void error because "userMove" is defined as ...
0
votes
4answers
84 views
Proper way of writing an int array and returning the number of elements?
I have a problem. I am trying to write a value-returning method that returns the number of elements in an integer array. I have the array written and have the return statement half right. I am lost at ...
1
vote
4answers
91 views
Return statement vs. accepting pointer to write into [duplicate]
Possible Duplicate:
In C++, is it still bad practice to return a vector from a function?
In terms of performance, when needing to return'heavier' objects like std::vector or std::string ...
1
vote
1answer
173 views
Java IDE 7.1 to MS SQL 2005 Using PreparedStatement…wheres the return?
I have been toiling with this issue all day.
After reading the benefits between Statements(S) and PreparedStatements(PS) I decided to convert all my S's to PS's in Netbeans.
I was astounded to see ...
-2
votes
5answers
1k views
What does “return” statement mean in Objective-C? [closed]
What is the meaning of return statement in Objective-C>?
For example, a simple calculator method to add numbers:
-(double) add: (double) value
{
accumulator += value;
return accumulator;
}
...
11
votes
7answers
1k 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 ...
2
votes
3answers
74 views
A return statement in MSDN
Today,when I was reading the MSDN,I encountered the following codes:
void draw( int I, long L );
long sq( int s );
int main()
{
long y;
int x;
y = sq( x );
draw( x, y );
return();
}
long sq( int s ...
0
votes
3answers
2k views
“Parse error: syntax error, unexpected T_IF in …” when I use the return statement
This is part of a bigger code, I keep getting the parse error ::: if I create the if function outside of the $return & reference it with a session it works but this is not "good" coding :::how can ...
2
votes
0answers
174 views
Scala doesn't do type inference on return statements? Why not? [duplicate]
Possible Duplicate:
Type Inference on Method Return Type
This addresses the same topic as this post.
It was asked why Scala doesn't do type inference on return statements.
Daniel Sobral ...
0
votes
1answer
71 views
PHP text file cleared when using return statement
To start out with, I basically have a function that opens up a text file, grabs the first line, removes it from the file, and saves the file with the remainder. Everything is working fine except when ...
0
votes
3answers
236 views
'return' with not-None expression list returns 'None'
I'm currently working on XML (SVG) traversing and have the next problem:
my function always return None after if currNode.parentNode is rootNode:, though, as you can see in the code below, I've ...
1
vote
2answers
640 views
Assigning Function Value Instead of Using Return Keyword, and its Effect on Synchronised Code Execution
I am wondering if there is a difference between using
Public Function Foo() As Double
Return 3.0
End Function
and
Public Function Foo() As Double
Foo = 3.0
End Function
but specifically with ...
1
vote
3answers
149 views
return statements inside a function
I was wondering how people handle return statements in a function. I have a method that allocates some memory but has a return false; statement when a function goes wrong. this statement is located ...
0
votes
4answers
757 views
Python beginner question - trying to understand return statement
Basically I want to return the contents of create_user in the register function to use to save to my database. I am a complete beginner. What am I misunderstanding?
def register():
form = ...
3
votes
1answer
602 views
Error on missing return statement
How do I generate an error for a missing return statement under GCC?
cpfsfuse.c:184: warning: no return statement in function returning non-void
I'm able to return errors for implicit function ...