C++开发笔记

#ifndef 与 #define 的作用 在 C++ 开发过程中,我们经常在头文件(.h)中见到如下的代码:…

Read more...

One Night In Smart Pointers

https://en.cppreference.com/w/cpp/memory https://www.co…

Read more...

Object-Oriented Programming

Properties: Encapsulation Inheritance Polymorphism Over…

Read more...

Mastering Programming

这篇文章记录自己的HackerRank以及LeetCode刷题的心历路程。 2018.11.2 在高盛和Man…

Read more...

OS – Stack and Heap

Differences between Stack and Heap Stack is used for st…

Read more...

C++ Review

Compiler CMake — build system generator You use this de…

Read more...

Qt系列之(一):项目上手初体验

环境:Windows 7 64bit + Qt 5.5.1 & Mac OSX EI Capitan …

Read more...

C语言-不使用第三变量交换a、b

第一种方法,最老套通俗易懂的方法 #include <stdio.h> int main(){  …

Read more...