上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 30 下一页
摘要: Itanium C++ ABI Contents Acknowledgements Chapter 1: Introduction 1.1 Definitions 1.2 Limits 1.3 Namespace and Header 1.4 Scope of This ABI 1.5 Base D 阅读全文
posted @ 2020-11-23 13:29 fndefbwefsowpvqfx 阅读(283) 评论(0) 推荐(0) 编辑
摘要: Calling Conventions Demystified Visual C++ calling conventions explained Introduction During the long, hard, but yet beautiful process of learning C++ 阅读全文
posted @ 2020-11-23 13:13 fndefbwefsowpvqfx 阅读(164) 评论(0) 推荐(0) 编辑
摘要: https://www.cprogramming.com/compilingandlinking.html https://stackoverflow.com/questions/6264249/how-does-the-compilation-linking-process-work https: 阅读全文
posted @ 2020-11-23 12:36 fndefbwefsowpvqfx 阅读(72) 评论(0) 推荐(0) 编辑
摘要: https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_72/rzarg/name_mangling.htm Name mangling is the encoding of function and variable names into 阅读全文
posted @ 2020-11-23 12:33 fndefbwefsowpvqfx 阅读(139) 评论(0) 推荐(0) 编辑
摘要: https://itanium-cxx-abi.github.io/cxx-abi/ Itanium C++ ABI Revised March 14, 2017 Introduction The Itanium C++ ABI is an ABI for C++. As an ABI, it gi 阅读全文
posted @ 2020-11-23 12:31 fndefbwefsowpvqfx 阅读(154) 评论(0) 推荐(0) 编辑
摘要: Programming Concepts Series: The Stack and the Heap Compiled and Interpreted Languages Concurrency Static vs. Dynamic Type Checking Type Introspection 阅读全文
posted @ 2020-11-23 11:40 fndefbwefsowpvqfx 阅读(67) 评论(0) 推荐(0) 编辑
摘要: Programming Concepts Series: The Stack and the Heap Compiled and Interpreted Languages Concurrency Static vs. Dynamic Type Checking Type Introspection 阅读全文
posted @ 2020-11-23 11:36 fndefbwefsowpvqfx 阅读(57) 评论(0) 推荐(0) 编辑
摘要: Programming Concepts Series: The Stack and the Heap Compiled and Interpreted Languages Concurrency Static vs. Dynamic Type Checking Type Introspection 阅读全文
posted @ 2020-11-23 11:32 fndefbwefsowpvqfx 阅读(98) 评论(0) 推荐(0) 编辑
摘要: Programming Concepts Series: The Stack and the Heap Compiled and Interpreted Languages Concurrency Static vs. Dynamic Type Checking Type Introspection 阅读全文
posted @ 2020-11-23 11:31 fndefbwefsowpvqfx 阅读(105) 评论(0) 推荐(0) 编辑
摘要: Programming Concepts Series: The Stack and the Heap Compiled and Interpreted Languages Concurrency Static vs. Dynamic Type Checking Type Introspection 阅读全文
posted @ 2020-11-23 11:30 fndefbwefsowpvqfx 阅读(89) 评论(0) 推荐(0) 编辑
摘要: Programming Concepts Series: The Stack and the Heap Compiled and Interpreted Languages Concurrency Static vs. Dynamic Type Checking Type Introspection 阅读全文
posted @ 2020-11-23 11:29 fndefbwefsowpvqfx 阅读(102) 评论(0) 推荐(0) 编辑
摘要: https://thecodeboss.dev/2014/10/programming-concepts-the-stack-and-the-heap/ Programming Concepts Series: The Stack and the Heap Compiled and Interpre 阅读全文
posted @ 2020-11-23 11:27 fndefbwefsowpvqfx 阅读(78) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <vector> using namespace std; class RunBeforeMain{ public: static int hello() { cout<< "Hello world" <<endl; vector<int> 阅读全文
posted @ 2020-11-19 18:28 fndefbwefsowpvqfx 阅读(72) 评论(0) 推荐(0) 编辑
摘要: https://stackoverflow.com/questions/2766233/what-is-the-c-runtime-library I just asked this myself and was hurting my brain for some hours.Still did n 阅读全文
posted @ 2020-11-19 17:44 fndefbwefsowpvqfx 阅读(78) 评论(0) 推荐(0) 编辑
摘要: https://docs.microsoft.com/en-us/sysinternals/downloads/ https://docs.microsoft.com/en-us/sysinternals/downloads/sysinternals-suite Sysinternals File 阅读全文
posted @ 2020-11-19 12:37 fndefbwefsowpvqfx 阅读(99) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-11-16 09:38 fndefbwefsowpvqfx 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-11-16 09:34 fndefbwefsowpvqfx 阅读(0) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <random> using namespace std; class Foo { public: Foo(); ~Foo(); Foo(const Foo&); Foo & operator=(const Foo&); }; Foo::Fo 阅读全文
posted @ 2020-11-16 09:31 fndefbwefsowpvqfx 阅读(67) 评论(0) 推荐(0) 编辑
摘要: TString.h #ifndef TSTRING_H #define TSTRING_H #include <iostream> #include <cstdlib> //类的编译,先处理成员变量,后处理函数,所以不用太在意成员变量与成员函数的顺序。 class TString { //集中在头部 阅读全文
posted @ 2020-11-16 09:29 fndefbwefsowpvqfx 阅读(96) 评论(0) 推荐(0) 编辑
摘要: //This one actually compiles to assembly that doesn't have any conditionals: #include <stdio.h> #include <stdlib.h> void main(int j) { printf("%d\n", 阅读全文
posted @ 2020-11-16 09:11 fndefbwefsowpvqfx 阅读(52) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 30 下一页