摘要:
前言 在进入这篇文章之前应该学会:C++ hello world编译过程 本文代码来自:Lab 1 - OpenCV 的安装和使用 代码 #include <opencv2/opencv.hpp> using namespace cv; int main(int argc, char* argv[] 阅读全文
摘要:
main.cpp #include <iostream> int main(int argc, char* argv[]){ std::cout << "hello world" << std::endl; } 编译四步 1️⃣preprocessing, 2️⃣compilation proper 阅读全文