6
votes
8answers
166 views
How Non-Member Functions Improve Encapsulation
I read Scott Meyers article on the subject and quite confused about what he is talking about. I have 3 questions here.
Question 1
To explain in detail, assume I am writing a sim …
29
votes
25answers
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 …
3
votes
10answers
192 views
How can I test the performance of a C function?
Are there some good ways to know how a function performs in C? I would like to, for example compare my own function to a library function.
2
votes
5answers
112 views
Why is the output of the following two statements different?
code:
#define f(a,b) a##b
#define g(a) #a
#define h(a) g(a)
main()
{
printf("%s\n",h(f(1,2))); //[case 1]
printf("%s\n",g(f(1,2))); //[case 2]
}
output:
…
0
votes
3answers
160 views
How to make two arrays into a function in c++?
I have two string arrays "Array1[size]" and "Array2[size]". They both have the same size.
I would like to write a function which contains this two arrays but I am having problems i …
1
vote
1answer
91 views
What is the difference between void argument and no arguments in C? [closed]
Possible Duplicate:
Is there a difference between foo(void) and foo() in C++ or C
void foo1(void){...}
void foo2(){...}
Are foo1 and foo2 equivalent? If they are, which …
0
votes
1answer
34 views
Def, Void, Function?
Recently, I've been learning different programming langages, and come across many different names to initalize a function construct.
For instance, ruby and python use the def keyw …
1
vote
8answers
241 views
C all type parameter
How can I write a function which accepts a parameter of a generic type in C? (such as an int, a char...)
0
votes
4answers
51 views
Cant figure out how to return the callback function - need alternative solution
Hi there.
Im trying to return a callback value after the data is loaded, Im probably looking at this all wrong.
var loadFromDatabase = function(callback){
if (!obj.data.mya …
0
votes
0answers
21 views
Compare similar functions in different files
I have a large complicated function that was ported from C++ to C#. I would like to perform a diff to see exactly what has changed between the two. Other can manually copying eac …
0
votes
6answers
202 views
General programming question. When to use OOP?
My program needs to do 2 things.
Extract stuff from a webpage.
Do stuff with a webpage.
However, there are many webpages, such as Twitter and Facebook.
should I do this?
def …
0
votes
4answers
31 views
Trimming a parameter in the function header
A function header looks like this
function doit($theparam){
//$theparam is untrimmed
$theparam = trim($theparam);
//$theparam is now trimmed
}
Is it possible to do the …
8
votes
11answers
452 views
What happens in assembly language when you call a method/function?
If I have a program in C++/C (language doesn't matter much, just needed to illustrate a concept):
#include <iostream>
void foo() {
printf("in foo");
}
int main() { …
3
votes
5answers
97 views
PHP call_user_func vs. just calling function
I'm sure there's a very easy explanation for this. What is the difference between this:
function barber($type){
echo "You wanted a $type haircut, no problem\n";
}
call_user_ …
5
votes
4answers
129 views
Are named functions underrated in JavaScript?
Taking the jQuery framework for example, if you run code like this:
$(document).ready(function init() { foo.bar(); });
The stack trace you get in Firebug will look like this:
i …
