912 reputation
413
bio website
location
age
visits member for 2 years
seen 10 hours ago
stats profile views 75

May
15
comment Difference between using generic functions and using if (a == null)
why should generics be faster?
May
10
comment Compiler design, method inlining with multiple return
I construct cfg but the code generation depends on the actual code. So it seems that you can not relay just on CFG but thanks for pointing this direction, I will think about this.
May
9
revised Compiler design, method inlining with multiple return
Added tags
May
9
asked Compiler design, method inlining with multiple return
May
7
awarded  Citizen Patrol
May
7
answered In general, will a lot of small function calls harm performance?
May
1
comment My first project: Editing an .img file, guidance wanted
My advice : go sleep
Apr
29
awarded  Yearling
Apr
12
awarded  Nice Answer
Mar
16
answered C++ Code profiling/analysis for Mac and MPI
Mar
15
awarded  Popular Question
Mar
8
awarded  Notable Question
Feb
26
answered How do I run a python interpreter in Emacs?
Jan
9
accepted Using data type like uint64_t in cgal's exact kernel
Dec
29
comment String Creation in Java (Memory Usage)
why there is no difference in memory? you create two in fact two string objects in the first case.
Dec
29
comment String Creation in Java (Memory Usage)
in the first case you create two strings (one empty) and second "abc...". In the second just one.
Dec
26
comment Leap year calculation using logical operators
% is modulo divison. example 1 % 2 = 1, 2 % 2 = 0, etc. So it is the rest from divison of two numbers. Then the rest should be obvious.
Dec
25
comment stuck, Need help returns time span from vector list
pass pattern as const string& pattern, which is in general better.as you do not create a new copy of a string. But this is more about good programming style.
Dec
25
comment stuck, Need help returns time span from vector list
you should you string in BarMessage as a message. Then you can call find on the message (as it is a string's member function).
Dec
25
revised stuck, Need help returns time span from vector list
added 8 characters in body