A return statement causes execution to leave the current subroutine and resume at the point in the code immediately after where the subroutine was called, known as its return address. The return address is saved, usually on the process's call stack, as part of the operation of making the subroutine ...
0
votes
1answer
8 views
How to return something async with require?
I'm a little new to this so bear with me...
app.js:
var testVariable = require('./test');
console.log(testVariable);
test.js:
setTimeout(function() {
exports.something = "HELLO!";
}, 10000);
...
1
vote
1answer
19 views
Return JSON value from a function
I am able to pass a JSON string to my function but can't return a value back.
var json = {"First":"ABC", "Middle":"DEF", "Last":"GHI"};
allFunction6(json);
alert(first); //this does not work
...
1
vote
4answers
66 views
C++ delete object create with new when needed for return
How do I delete the space I allocated with new when I need to return the result. I used this so if I don't find an object I return back an object with a dummy sentinel value.
ClassObject* ...
0
votes
3answers
91 views
Returning an array from a C function
I'm trying to figure out how returning an array works out in C. This is the code. What I'm trying to do is save an array and then print it by using a function return. What am I doing wrong here?
...
0
votes
0answers
6 views
Return value of Glympse sendTicket method
What does the return value of the sendTicket method indicate? Sending was successful? Unfortunately it is not documented.
virtual bool Glympse::IGlympse::sendTicket (const GTicket &ticket) ...
1
vote
2answers
56 views
Why my template function is not a valid match in this call?
i made the following code to convert number to string and reverse
in the commented part of code i want to make the function type a template
thinking that it will acquire the type according to context ...
3
votes
2answers
48 views
Can't get reference of return value in Vb.Net
well I came from a lot of OOP language and seems VB.Net approach is kinda different
I have this function that returns a hashtable
Public Shared Function getMsg(msgCode As String) As Hashtable
...
2
votes
1answer
22 views
chrome.tabs.executeScript - how to make a script return a value?
I am injecting a script into a tab using chrome.tabs.executeScript. Its last parameters is a callback function that will be called with The result of the script in every injected frame. . How do I ...
0
votes
1answer
45 views
Calling function issues
I have a couple of javascript functions in my form and i have been trying to call them to no avail, seems like the first function in the list validates just fine but after you enter the correct data ...
-1
votes
0answers
21 views
Storyboard problems [closed]
I always get this error when I link the viewcontrollers and run the app. return
UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));.
Is there away to debug this thing
1
vote
5answers
40 views
Return json on exit php
I have been using $.getJSON in order to verify if a script has done its job properly, using exit("{'status':true}") (or false) but now I need the script to return a value (or an array). I see that I ...
0
votes
2answers
112 views
When return is needed and not needed in C++ [duplicate]
I did a little experimenting while doing some self taught C++ and found that after removing a return statement from a function, executing my compiled code runs the same. Here's a little example code ...
0
votes
3answers
55 views
How can I insert multiple new line characters within a file using python?
I have a fasta file that does not contain any return characters. The file looks something like this:
...
-1
votes
2answers
71 views
Is there a conditional abort return technique for C# shorthand if notation
Is there a conditional abort return technique for C# shorthand if notation ?
like:
return (a==b) ? true : abort;
if condition not satisfies, return will be aborted.
0
votes
2answers
28 views
jQuery return not working as expected
The following function validates empty field correctly:
function empty_field(element){
element.each(function(){
if($(this).val() == ''){
$(this).addClass('error');
}
...
3
votes
1answer
72 views
Why/How does returning a “locally instantiated array” work in Java?
The following code snippet seems to work for me exactly as I want:
public CharSequence[] getAllCities() {
String selectQuery = "select " + COLUMN_CITY + " from " + TABLE_NAME;
SQLiteDatabase db ...
0
votes
1answer
9 views
Twitter Button Not Returning Additional Times
I have a very custom drupal site that I am working on and I have come across this problem that whenever the overlay is triggered with the twitter button nested in it, the first time it works but any ...
1
vote
3answers
81 views
Is it possible see the value returned in c++?
So..I'm testing a function with assert: (The value of pBola1 is 1)
assert(BomboTest.TreureBola(1)==pBola1);
BomboTest.TreureBola it's a function that returns a random number (in this case has to ...
0
votes
1answer
29 views
D3JS can't receive function?
Ok, so I want to draw Arcs using D3 depending on the data. However, when I try to pass the value as a function it fails, if I pass it as a variable it works.
Check the fiddle: ...
0
votes
1answer
33 views
php return array from function returns NULL
Still just learning PHP so sorry if this is stupid!! I have a function that loops through a mysql adjacency table. I would like to return this as an array. It seems fine, in that if when I return in ...
4
votes
4answers
55 views
Getting a value/Returning something each time a thread executes its run
I have 2 threads running. One is a TimeStepThread, the other is a CarThread.
The CarThreadruns every 500ms. The TimeStepThreadruns at whatever interval I give it. Now, each 500ms, the CarThreadupdates ...
3
votes
2answers
60 views
How to pass a value in a return function as an argument on another function, use it in and then call it appropriately C++?
I would like to know how to pass a return function to another function as an argument so that I can use its value.
Example:
int childFunction(int a, int b)
{
int c;
c = a + b;
return c;
...
0
votes
1answer
38 views
How to return a String value to another class in regards to editText [duplicate]
I am trying to display a textValue inserted by the user from the main class to another class/window.
On my main class I made this method
public String retChoice()
{
choices[0] ="sasda"; ...
0
votes
2answers
71 views
Reversing a C string function crashes?
I'm trying to write a C function to reverse a passed in C style string (ie char *) and return the char pointer of the reversed string. But when I run this in VS2012, nothing is printed in terminal and ...
1
vote
3answers
63 views
Are pointers used when copying a class with huge array member?
I have a class storing an multidimensional array as member.
struct Structure
{
Structure()
{
memset(Data, 0, sizeof Data);
}
int Number;
int Data[32][32][32];
}
When I ...
1
vote
2answers
42 views
Best way of returning array values without keys in PHP
I have this array and I want to return the value's as an array from this array (confusing myself here).
array (size=5)
6 => int 12058
7 => int 12061
12 => int 12057
13 => int 12063
...
5
votes
5answers
103 views
Best practice for returning multiple values in Java?
Today I've added a extra security check behind my login forms, to slow down brute force attacks. I've got multiple login forms and made a nice easy to call function that does all the checking and then ...
0
votes
1answer
20 views
Why can Java auto-convert a byte to most other primitives in return of a function?
Perhaps this is something I overlooked back when I learned the basics of Java, but why is the following code legal?
float foo(byte b) {
return b;
}
It is allowed with every primitive type, with ...
-2
votes
3answers
44 views
How to get the largest value from an array that contains two class files
How do I make my program find and print out the most recent movie of the array?
this is the program:
public void start() {
// Step 1. Declare and construct an array of 19 Movie objects (call ...
1
vote
5answers
68 views
Java How Do I Properly Return Int Value?
Total novice here trying to learn myself java with tools online. Right now Im clearly doing something wrong as I cant figure out how to get a separate class file to return a random int. The random ...
3
votes
1answer
82 views
How to return an actual instance from a method with a generic return type
I'm having hard time with creating a type safe behavior, I'll use a general example in order to emphasize my issue:
I have an interface BoxCreator which is defined by:
public interface BoxCreator{
...
3
votes
1answer
87 views
If one void function returns, how do I stop the next function call from executing?
I have two different button clicks that call modified versions of the same function...
private void button1_Click(object sender, EventArgs e)
{ SendEmail(); }
private void button2_Click(object ...
0
votes
2answers
28 views
Newline in Javascript for Mozilla Firefox
Example which is not working:
<div id="clockDisplay"></div>
<script type="text/javascript" language="javascript">
function renderTime() {
var currentTime = new Date();
var h ...
0
votes
1answer
89 views
jquery Uncaught TypeError: Cannot read property 'options' of undefined (edited)
Hello I made a function for a simple drag and drop quiz. Everything works fine except for internet explorer ofcourse. In chrome console I get this error: Uncaught TypeError: Cannot read property ...
0
votes
1answer
35 views
Searching for an element in an array and returning it
public SalesItem findItem(String itemCode){
// to be implemented
Cart cart = new Cart();
SalesItem[] item;
item = new SalesItem[1];
item[0] = null;
for (int i = 0; i < size -1; i++) {
if ...
2
votes
4answers
43 views
Javascript; function (x,y,z), confused on how values are passed
I searched and read about functions to no extent. I have seen my questions answered, but not in the detail I have understood. I'm less than one year into programming.
Okay, so I don't understand how ...
0
votes
1answer
42 views
How do I call a function which returns a variable, multiple times, while inside another function?
I have a function (text-based game) that asks for input multiple times throughout itself, from which all whitespace I would like removed immediately after before proceeding to error checking.
To ...
3
votes
3answers
82 views
what will a function return if there's no explicit 'return' [duplicate]
I bumped into this problem when I forgot to write the return clause of a function, but there was no warning or error in gcc. I fixed it but started wondering why the function would return something ...
1
vote
2answers
27 views
XtifySDK.getXidKey() returns null
I'm following the instructions as the Getting Started section for Xtify notifications doing the following:
Context myAppContext = getApplicationContext();
XtifySDK.start(myAppContext , ...
1
vote
1answer
40 views
Elisp function return value
I'm having a (probably) dumb problem with Elisp. I want a function to return t or nil depending on a when condition. This is the code:
(defun tmr-active-timer-p
"Returns t or nil depending of if ...
0
votes
4answers
50 views
Javascript does user exists, returning value from ajax to late?
I have a script that tells a visitor if the username is already exist or not before he can proceed,
Below you see a part of my code;
EDIT: Ok I have read what you guys said, and modified it, but I ...
0
votes
2answers
54 views
Could this cause a memory leak, returning array from function?
I have the following code which works fine except I'm not sure if I need to delete the returned_array pointer in the int main() or if its automatically deleted. I will guess its not automatically ...
-2
votes
1answer
32 views
Difference between Return and Break in SQL Server stored procedure [closed]
Want to know the difference between Return and break in using them while writing a SQL Server stored procedure.
Thanks
0
votes
3answers
58 views
return in a for loop for searching in an array
I have objects containing coordinates (with 3 int).
What do you think would be the "better" solution to find an object with a specific coordinate in an array of objects :
For loop with a return ...
4
votes
0answers
134 views
How to get results from a Delphi function called by Lua
I am creating a function in Delphi to be able to use it with Lua.
I have managed to create a procedure (or a function without taking results) and it works perfect.
The problem is that now I want to ...
0
votes
1answer
35 views
Javascript function returns undefined instead of object
I am a Perl coder trying to deal with a JavaScript. Trying to make an AJAX request but function always returns undefined. What is wrong with this code? How to get it to work properly?
var url = ...
0
votes
2answers
99 views
How to use `return()` as expression?
|| is less verbose and easier to type than if (...), so I'd like a way to do the following (which happens a lot in my code):
int bar() {...; return successFlag;}
int foo() {
bar() || return(...); ...
1
vote
4answers
77 views
What happens to the increment of “b” in “return b++” ,if used in a function?
Since b++ is post-increment,what happens to the increment of b if used as return b++ as in the following program?
#include<stdio.h>
int foo(int);
int main()
{
int a=8;
...
3
votes
4answers
131 views
Return 2 strings with function in C# [duplicate]
I have a function where I want to return 2 values? Is this possible?
This is my code but it doesn't seem to like that I want to return 2 values
public string PlayerCards(string player1C1, string ...
0
votes
2answers
43 views
Return statement in PHP functions [duplicate]
I'm having some problems with a Return statement in PHP. The thing is that, no matter what happend inside my function I always get a false value out of the function. I really think that is because of ...




