1
vote
8answers
118 views
java: different return types when overloading
Hi,
I have a class tree like this:
master class abstract class Cell
AvCell extends Cell
FCell extends Cell
i have an abstract method getValue() in Cell
Is it posibble to make …
1
vote
5answers
62 views
How to name a method that has an out parameter?
Hi,
What is the common preference to name a method that has an out parameter inside?
Usually I use Get as a prefix to mention that the method returns a value (like GetMyBusiness) …
0
votes
2answers
28 views
unable to return to main() from a method reading standard input stream
I am basically trying to return from a method which reads user input from the standard input stream. Since the user has the option to quit the application, I am trying to figure ou …
1
vote
7answers
84 views
javascript function return not working.
Hey,
I have a problem returning a variable in my function, the below script works fine:
function sessionStatus(){
$(document).ready(function(){
$.getJSON(scriptRoot+"ses …
3
votes
1answer
58 views
Early return from a block given to instance_exec
In my application, I have the need to allow blocks to be defined and called within the scope of a class, using instance_exec (via Rails 2.3.2). However, some of these blocks need t …
0
votes
3answers
214 views
Make a parent function return in ActionScript3? (or make addEventListener return)
Basically I've got a code which should load a lot of images so I need a function to load them. The problem is that addEventListener requires a function which it will call when the …
0
votes
2answers
82 views
C# web service … return nested custom objects.
I've started developing a new web service in VS2005. There is only one method:
[WebMethod]
[XmlInclude(typeof(Person))]
public PersonAction GetAction()
{
PersonAction …
0
votes
2answers
53 views
Paypal Unsubscribe return url
Hi,
I have created a paypal Unsubscribe button in Java , when user click on it and after login to paypal account and unsubscribes , the paypal posts on the notifyurl success …
1
vote
1answer
116 views
Number of levels in a tree in LISP
An n-ary tree is memorised in the following way:
(node (list-subtree-1) (list-subtree-2) ...)
As an example, the tree
A
/ \
B C
/ \
D E
is represented as follows:
…
0
votes
5answers
87 views
can php return a boolean? => return $aantal == 0;
hi very short question
can php return a boolean like this:
return $aantal == 0;
like in java you can
public boolean test(int i)
{
return i==0;
}
or do you Have to use a if c …
0
votes
5answers
47 views
Access an Array Returned by a Function
Is there anyway to directly access the data returned in an array without a temporary variable?
Currently, my code is as follows:
function getData($id) {
// mysql query
re …
1
vote
3answers
65 views
Make Ruby loop return “x” images rather than x, the integer
The following returns whatever integer I feed it as a parameter.
def space(spacer_count)
spacer_count.times do
image_tag("24gray/spacer.png", :class => "spacer")
…
0
votes
5answers
87 views
Storing char array in a class and then returning it
Hi,
I need to store a char array inside a class and then return it. I have to admit that I'm a bit confused about pointers and have tried everything I can think of but can't get i …
0
votes
4answers
48 views
“SELECT TOP 1” equality for codeigniter?
Hi Friends,
I need to get only 1 record from sql result. we use "SELECT TOP 1" in standard sql, but how can we do that in CodeIgniter? Is there any func for that? I researched so …
0
votes
4answers
71 views
Return value from ajax call?
Hi,
I'm making a basic ajax function in jquery which echoes the number of rows found in a MySQL Query.
function checkEventIDClass(id) {
var params = 'method=checkE …
