kindring 1 рік тому
батько
коміт
b94a1277ff

+ 5 - 0
.idea/.gitignore

@@ -0,0 +1,5 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Editor-based HTTP Client requests
+/httpRequests/

+ 12 - 0
.idea/md.iml

@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<module type="WEB_MODULE" version="4">
+  <component name="NewModuleRootManager">
+    <content url="file://$MODULE_DIR$">
+      <excludeFolder url="file://$MODULE_DIR$/.tmp" />
+      <excludeFolder url="file://$MODULE_DIR$/temp" />
+      <excludeFolder url="file://$MODULE_DIR$/tmp" />
+    </content>
+    <orderEntry type="inheritedJdk" />
+    <orderEntry type="sourceFolder" forTests="false" />
+  </component>
+</module>

+ 8 - 0
.idea/modules.xml

@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="ProjectModuleManager">
+    <modules>
+      <module fileurl="file://$PROJECT_DIR$/.idea/md.iml" filepath="$PROJECT_DIR$/.idea/md.iml" />
+    </modules>
+  </component>
+</project>

+ 6 - 0
.idea/vcs.xml

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="VcsDirectoryMappings">
+    <mapping directory="" vcs="Git" />
+  </component>
+</project>

+ 26 - 0
渐构/拆书/cPrimerPlus

@@ -0,0 +1,26 @@
+# C Primer Plus
+## 转换说明
+### printf 格式化原理
+
+示例代码
+
+```c
+float n1;    /* 作为double类型传递 */
+double n2;
+long n3, n4;
+...
+printf("%ld %ld %ld %ld\n", n1, n2, n3, n4);
+```
+
+1. 在调用 printf 时 程序将传入的值放入 [栈]
+2. 不同的类型的值分配不同的 内存 
+> `float` 将会被转换为 `double` 类型, 所以占据八个字节  
+
+内存空间表示,单位字节
+| 0 - 7 | 8 - 15 | 16 - 19 | 19 - 23|
+| --- | --- | --- | --- |
+| n1 | n2 | n3 | n4 |
+3. printf 函数开始根据 [转换说明] 从 [栈] 中读取对应的值
+`%ld`说明应该读取 4字节  
+但是 n1 所占空间为 8字节,所以只能读取 n1 的前半部分
+四个`%ld`只能读取16字节, 所以 n3 与 n4 是无法被读取的

+ 1 - 0
渐构/拆书/高质量程序设计指南(第三版.林悦编著).md

@@ -1010,3 +1010,4 @@ p->Say();    // 输出:Derived::Say()was invoked!
 在需要的时候用连接器将用户代码与库代码连接成可执行程序。  
 另一方面,独立编译技术可以大大减少代码修改后重新编译的时间。
 
+