随笔分类 -  c/c++

C++ 面试准备
摘要:C++ 面试准备 ###1. 语法基础 编译过程 从源⽂件到可执⾏⽂件的过程?hello.cpp 预处理-> hello.i 去除注释、展开宏定义,处理预编译指令 编译-> hello.s 将预处理的⽂件进⾏词法分析、语法分析、语义分析产⽣汇编代码 汇编-> hello.obj 把汇编代码翻译成⽬标 阅读全文

posted @ 2020-08-04 11:41 BITChase 阅读(551) 评论(0) 推荐(0)

C++常用STL
摘要:C++基本操作 vector #####如何查找 第二维?或者第一维 【链接】对vector中的pair进行多次find操作 class isE{ isE(int val) :User(val){} bool operator()(const pair<int,int>& e)const{ retu 阅读全文

posted @ 2020-07-18 11:58 BITChase 阅读(256) 评论(0) 推荐(0)

导航