Hi!
I just want to know which is faster.
void (int *Number) or
void (int &Number)
Thanks!
Hi!
I just want to know which is faster.
void (int *Number) or
void (int &Number)
Thanks!
Current projects:
1) User Interface Development Kit (C++)
2) HTML SDK (C++)
3) Classes (C++)
4) INI Editor (Delphi)
This is faster, because:void (int *Number)
This is not valid. This is the C board, not the C++ board.void (int &Number)
Quzah.
Hope is the first step on the road to disappointment.
Hm...
I'll rephrase the question.
Which is faster, references or pointers?
Current projects:
1) User Interface Development Kit (C++)
2) HTML SDK (C++)
3) Classes (C++)
4) INI Editor (Delphi)