海上月
01
21
Makefile 学习 Makefile 学习
Makefile 学习C语言的编译过程预处理(Preprocessing)-E是让编译器在预处理之后就退出,不进行后续编译过程;-o是指定输出文件名。 gcc -E hello.c -o hello.i 编译(Compilation) 这
2024-01-21 AllenMirac
19
C++指针复习 C++指针复习
const修饰指针#include <iostream> using namespace std; class Rectangle{ public: Rectangle(int length, int width
2024-01-19 AllenMirac