在 C/C++ 中,我想知道哪个更快?
int a;
int b = a + a; // this
int b = 2 * a; // or this?
另外,数据类型重要吗?怎么样long
?我们加起来的次数呢?
(关于什么...)
long a;
long b = a + a + a +a;
long b = 4 *a;
在 C/C++ 中,我想知道哪个更快?
int a;
int b = a + a; // this
int b = 2 * a; // or this?
另外,数据类型重要吗?怎么样long
?我们加起来的次数呢?
(关于什么...)
long a;
long b = a + a + a +a;
long b = 4 *a;