博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用常量 变量 时间上的区别
阅读量:5038 次
发布时间:2019-06-12

本文共 717 字,大约阅读时间需要 2 分钟。

 

以前感觉使用变量比使用常量慢,因为要获得变量的值,

其实不是这样的,

 

变量和常量都是存储在地址空间,

需要的时候拿出来用,时间上没差别。(我是这样认为的,无法保证正确)

 

1 #include 
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #include
9 #include
10 #include
11 using namespace std;12 13 #define ll long long14 15 const int maxn=1e4+10;16 const int inf=1e9;17 const double eps=1e-8;18 19 20 21 int main()22 {23 int i,j,a=10,b=20;24 for (j=1;j<=1000;j++)25 for (i=1;i<=10000000;i++)26 // if (a>b)27 if (10>20)28 printf("ok\n");29 return 0;30 }31 /*32 10>20 15.066 s33 14.791 s34 a>b 15.318 s35 14.697 s36 */

 

转载于:https://www.cnblogs.com/cmyg/p/10810199.html

你可能感兴趣的文章
图解算法时间复杂度
查看>>
UI_搭建MVC
查看>>
一个样例看清楚JQuery子元素选择器children()和find()的差别
查看>>
代码实现导航栏分割线
查看>>
Windows Phone开发(7):当好总舵主 转:http://blog.csdn.net/tcjiaan/article/details/7281421...
查看>>
ASP.Net页面和控件缓存设置
查看>>
SEO第一步做什么
查看>>
Python-01作业(登录和三级菜单)
查看>>
64位操作系统下IIS报“试图加载格式不正确的程序”错误
查看>>
spring-qualifier解释
查看>>
URL参数中文乱码解决
查看>>
iframe的一些介绍
查看>>
mapper.xml实现oracle的分页语句
查看>>
[51nod1267]4个数和为0(预处理+双指针)
查看>>
[poj2151]Check the difficulty of problems概率dp
查看>>
深入浅出之Smarty模板引擎工作机制(一)
查看>>
UE4物理动画使用
查看>>
线程间操作无效: 从不是创建控件“listBox1”的线程访问它
查看>>
2014.09.11 cURL
查看>>
Jython概要
查看>>