Tagged Questions

0
votes
4answers
40 views

jquery synchronous functions

Is there a way to run a function after another functions completes? For example: doSomething(); doSomethingElse(); i only want doSomethingElse() to run after doSomething complet …
6
votes
13answers
328 views

Best way to return early from a function returning a reference

Let us say we have a function of the form: const SomeObject& SomeScope::ReturnOurObject() { if( ! SomeCondition ) { // return early return ; } …
0
votes
1answer
58 views

Python func_dict used to memoize; other useful tricks?

A Python function object has an attribute dictionary called func_dict which is visible from outside the function and is mutable, but which is not modified when the function is call …
1
vote
1answer
11 views

AS3: Accessing custom class public functions from a MovieClip on a timeline

Hi, I've got a AS3 program with a Main.as custom class. In this class I load an instance of a 'menu' movieclip which has simpleButton instances inside... How do I access the Main …
2
votes
5answers
96 views

use random functions (python)

Hi, I wonder if we can do that in python, let's suppose we have 3 differents functions to processing datas like this: def main(): def process(data): ..... def process1( …
0
votes
1answer
35 views

extract the number and name of python method arguments

How can I return the arguments of a function in a different module #Module: functionss.py def simple(a, b, c): print "does something" #Module: extract.py #load the called mo …
30
votes
24answers
3k views

Best Practice: 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 …
2
votes
3answers
93 views

Python tabstop-aware len() and padding functions

Python's len() and padding functions like string.ljust() are not tabstop-aware, i.e. they treat '\t' like any other single-width character, and don't round len up to the nearest mu …
1
vote
2answers
64 views

Should I kill a function running as a thread (.Net)

Hi, I've just started with C#. I'm running an object's function as a thread (new Thread(myFunc).Start()). Does the thread kill itself when the function is finished or must I manua …
0
votes
4answers
63 views

<list> retreving items problem with iterator

I have a list of type Instruction*. Instruction is a class that I made. This class has a function called execute(). I create a list of Instruction* list<Instruction*> instL …
0
votes
3answers
99 views

Why I can’t pass two chars as function arguments in C?

I have a function: int get_symbol(tab *tp, FILE *fp, char delim) and I call it like this: get_symbol(tp, fp, ';') I always have it declared in the header as: int get_symbol( …
0
votes
4answers
72 views

C++ generic classes & inheritance

Hi! I'm new to generic class programming so maybe my question is silly - sorry for that. I'd like to know whether the following thing is possible and - if so, how to do it I have …
1
vote
1answer
51 views

Patterns for declaring functions for grater readability

In C++ functions needed to be declared before they were called. This could be worked around with function signatures but for the most part this is no longer required in newer progr …
5
votes
3answers
82 views

How can Java inline over virtual function boundaries?

Hi all, I'm reading up some material on whether Java can be faster than C++, and came across the following quote: "Java can be faster than C++ because JITs can inline over virtua …
0
votes
3answers
35 views

Using mysql_query and mysql_fetch_array

I am trying to find out which is the proper way to fetch data from my database. Either way works, but what's the difference; an in-depth explanation? $sql = mysql_query("SELECT * …

1 2 3 4 5 33 next
15 30 50 per page