镜像操作 列出镜像: $ sudo docker images REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE hello-world latest 0a6ba66e537a weeks ago B 获取镜像: docker系统镜像可以从任意一个可访问的镜像仓库获取,默认从docker hub上获取,如果下载太慢的话可以考虑国内的镜像仓库,例如dl.dockerpool.com:5000或者阿里云镜像库下载. docker获取镜像用docker pull…
typedef struct point { int x; int y; }Point; 在声明变量的时候就可以:Point p1; 如果没有typedef, 如: struct point { int x; int y; }; 在声明变量的时候就必须用:struct point p1; Point是struct point的别名. 也可以省去point,如下: typedef struct { int x; int y; }Point; 背景:写C++代码对各种容器操作很陌生,在此总结下 Ve…
STL容器能力一览表 Vector Deque List Set Multiset map Multimap 典型内部 结构 dynamic array Array of arrays Doubly Linked list Binary tree Binary tree Binary tree Binary tree 元素 Value Value Value Value Value Key/value pair Key/value pair 元素 可重复 是 是 是 否 是 对key而言否 是…