摘要:
编译器会给类的非静态成员函数添加一个this参数。 int square(int num) { return num * num; } class Hehe{ public: int square(int num) { return num * num; } }; int main() { int 阅读全文
摘要:
https://kubernetes.io/docs/concepts/cluster-administration/networking/ Cluster Networking Networking is a central part of Kubernetes, but it can be ch 阅读全文
摘要:
index PostgreSQL uses Lehman-Yao's high concurrency B-tree for standard indexes (https://www.csd.uoc.gr/~hy460/pdf/p650-lehman.pdf). Along with some P 阅读全文
摘要:
https://www.digitalocean.com/community/tutorials/understanding-the-gopath Introduction This article will walk you through understanding what the GOPAT 阅读全文
摘要:
1 class A { virtual void fun2(); virtual void fun3() {}; }; int main() { new A; return 0; } //LNK2001: unresolved external symbol "private: virtual vo 阅读全文
摘要:
leader https://vi.stackexchange.com/questions/836/what-is-leader Vim is full of various commands, which are assigned to almost all keys on the keyboar 阅读全文
摘要:
-- Selecting Windows SDK version 10.0.18362.0 to target Windows 10.0.18363. -- The C compiler identification is MSVC 19.28.29334.0 -- The CXX compiler 阅读全文
摘要:
fonttools pip install fonttools The character code points for a ttf/otf font are stored in the CMAP table. You can use ttx to generate a XML represent 阅读全文