摘要: After the sleep interval has passed, the thread is ready to run. If you specify 0 milliseconds, the thread will relinquish the remainder of its time s 阅读全文
posted @ 2020-07-22 19:46 Smah 阅读(1307) 评论(0) 推荐(0) 编辑
摘要: 一、什么是内联函数 在C语言中,如果一些函数被频繁调用,不断地有函数入栈,即函数栈,会造成栈空间或栈内存的大量消耗。 为了解决这个问题,特别的引入了inline修饰符,表示为内联函数。 栈空间就是指放置程式的局部数据也就是函数内数据的内存空间,在系统下,栈空间是有限的,假如频繁大量的使用就会造成因栈 阅读全文
posted @ 2020-07-22 19:37 Smah 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 高位<==低位(例32<==0) 类型 符号位 指数位 尾数位 大小 float 1 8 23 32bit double 1 11 52 64bit 单精度例1: float b = 2.25; b的二进制表示:10.01 b的二进制科学计数法表示:1.001*2^1 符号位:0(1位) 指数位:1 阅读全文
posted @ 2020-07-22 17:44 Smah 阅读(451) 评论(0) 推荐(0) 编辑