shlab
shlab 这个lab主要是考察信号的使用,还有进程创建的知识。 首先回顾一下信号处理程序的终点: 处理程序要尽可能简单。 在处理程序中只调用异步信号安全的函数。(可重入的且不能被信号处理程序中断)。 在进入处理程序时把errno 保存在某个局部变最中,在处理程序返回前恢复它。 阻塞所有的信号,保护对共享全局数据结构的访问。 首先是参数解析执行,在子进程创建过程中,设置和解除阻塞的SIGCHLD信号来避免进程在添加进job组前终止导致把不存在的子进程添加到作业列表中,书上已经给我们例子: 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647void eval(char *cmdline) { char *argv[MAXARGS] = {NULL}; //初始化指针地址 int fg_bg; pid_t pid; sigset_t mask_all, mask_one,...
EffectiveCpp0x3
[toc] Resource Management 如内存,互斥锁,数据库连接,网络sockets…… 重要的是,当你不再使用它了,应该将它还给系统。 13. Use objects to manage resources. 获得资源后立刻放进管理对象(managing object) 内。“资源取得时机便是初始化时机” (Resource Acquisition Is Initialization; RAII) 。 管理对象(managing object) 运用析构函数确保资源被释放。 为什么手动释放堆内存容易出错? e.g: Investment * createlnvestment(); void f (){Investment* plnv = createlnvestment(); …… delete plnv; return; } //若……中有return导致提前返回,则会导致资源泄露,且不易察觉 std::auto_ptr:已被弃用。由于其拷贝时原先的指针会指向null,致潜在的资源泄漏和行为不确定性。auto_ptr 被 C++11 中引入的...
EffectiveCpp0x2
Effective C+ [toc] Constructors,Destructors,and Assignment Operators05. Know what functions C++ silently writes and calls C++自动为类声明copy构造函数,copy assignment操作符和析构函数。如果没有声明构造函数,编译器会生成default构造函数。 这些函数都是public且inline的。 123456789101112131415#include<iostream>class Entity{public: Entity() {} // Default constructor ~Entity() {} // Destructor Entity(const Entity& rhs) {} // Copy constructor Entity operator=(const Entity& rhs) ...
template
templatetemplates的基本用法 编译器根据你提供的规则为你编写代码。 模板定义本身不参与编译,而是编译器根据模板的用户使用模板时提供的类型参数生成代码,再进行编译。 1234567891011121314151617181920212223242526272829303132#include <iostream>#include <string>template <typename T>void Print(T value) //函数模板{ std::cout << value << std::endl;}template <typename T, int N>class Array //类模板{private: T m_Array[N];public: int GetSize() const { return N; }};int main() { Array<int, 5>...
EffectiveCpp0x1
Effective C++[toc] 导读 声明式:告诉编译器某个东西的名称和类型,但是略去细节。 123templete<typename T>class Randolfluo;std::string Print(std::string string); 定义式:提供编译器对象、函数和模板等的实际代码本体。 初始化:给予对象值的过程。 copy构造与copy赋值:通过是否有新对象被定义区分。 Accustoming youself to C++01. View C++ as a federation of...
Cpp新特性
[toc] lvalue && rvalue (C++11)Understanding lvalues and rvalues in C and C++ - Eli Bendersky’s website (thegreenplace.net) An lvalue (locator value) represents an object that occupies some identifiable location in memory (i.e. has an address). rvalues are defined by exclusion, by saying that every expression is either an lvalue or an rvalue. Therefore, from the above definition of lvalue, an rvalue is an expression that does not represent an object occupying some identifiable...
Cpp
[toc] C++Solution and Project Solution is a vessel containing projects, and the code is the actual organizational unit of the project. Solution is used to organize and manage multiple projects, while a project is used for real operations and construction. hello_world12345678910111213141516171819#include <iostream> //Pre-process#if 1 //Pre-process can be an annotation// The "static" keyword means that the function is only declared within this translation unit.static void...
Cpp_Standard_Templete_Library
[toc] vcector Store in the heap. 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849#include <iostream>#include <string>#include <vector>struct Vertex{public: float x, y, z; Vertex(float x, float y, float z) :x(x), y(y), z(z) { } Vertex(const Vertex& vertex) :x(vertex.x), y(vertex.y), z(vertex.z) { std::cout << "Copied!" << std::endl; }};std::ostream&...
CppClass
[toc] class The fundamental ideas behind classes are data abstraction and encapsulation. The only difference between classes and structs is the default visibility. Use the prefix m_ to denote a private variable. class can reduces duplication e.g. 1234567891011121314151617181920212223242526272829303132#include <iostream>#define LOG(x) std::cout << x << std::endlclass Player{public: int x, y; int speed; void Move(int xa, int ya) //Functions in a class are called...
Git
Git版本控制(Git) · the missing semester of your cs education (missing-semester-cn.github.io) 基本命令git init 创建一个git仓库 git status 查看文件状态 -s状态简览 git add 跟踪一个文件 把已跟踪的文件放入暂存区 合并时把有冲突的文件标记为已解决状态 git reset HEAD filename 取消暂存 git diff 比较工作目录中当前文件和暂存区域快照之间的差异。也就是修改之后还没有暂存起来的变化内容 git diff --staged git diff --cached 比对已暂存的文件与最后一次提交的文件的差异 .gitignore 忽略文件配置文件, git commit git commit -a git commit --amend 提交更新,-a表示把所有已经跟踪过的文件暂存起来一起提交,跳过使用暂存区。--amend表示重新提交。 git rm -f 强制删除。 git mv...