之所以我们这么喜欢OS X,是它自带了command line工具,但是Apple厂商为Terminal设置很多的默认值,导致界面很丑没有什么颜色我们很伤心,同时我们希望界面是五颜六色的,至少是彩色的。我们需要在Terminal输入“ls”,如下图:我在网络上找了几个如何调整颜色的方案,尽管可以用,...
分类:
其他好文 时间:
2014-07-16 19:12:02
阅读次数:
222
libvirt is a library that provides a common API for managing popular virtualization solutions, among them KVM and Xen. 使用virt-install创建image qemu-img ...
分类:
其他好文 时间:
2014-07-16 18:35:42
阅读次数:
273
Virtual Machine Lifecycle This page describes the basics of the virtual machine lifecycle. Its aim is to provide fundamental information to create, ru...
分类:
其他好文 时间:
2014-07-16 18:29:27
阅读次数:
365
How the virtual networks used by guests work Networking using libvirt is generally fairly simple, and in this section you'll learn the concepts you ne...
分类:
Web程序 时间:
2014-07-16 18:27:29
阅读次数:
311
经验:private 继承意味 is-implemented-in-terms of。它通常比 composition 的级别低。
但是当 derived class 需要访问 protected base class 的成员,或需要重新定义继承而来的 virtual 函数时,这么设计是合理的
经验:和 composition 不同, private 继承可以造成 empty base 最优化。这对致力于“对象尺寸最小化”的程序库开发者而言,可能很重要
示例1:虽是 Empty class,但却不仅要花...
分类:
编程语言 时间:
2014-07-15 22:41:05
阅读次数:
284
1.virtual 函数版本
class GameCharacter{
public:
virtual int healthValue() const; //返回人物的健康指数, derived classes 可重新定义它
};
2.使用 non-virtual interface 手法,那是 Template Method 设计模式的一种特殊形式。
让客户通过 public non-virtual 成员函数间接调用 private virtual 函数
class GameCharacter{
pu...
分类:
编程语言 时间:
2014-07-15 22:36:18
阅读次数:
364
TObject消息分派 procedure Dispatch(var Message); virtual; #负责分派消息到特定VCL组件的事件处理函数 procedure DefaultHandler(var Message); virtual; #消息分类:通过子类覆盖此方法,处理窗...
分类:
其他好文 时间:
2014-07-15 09:40:31
阅读次数:
444
今天我来测试连接的安全,数据是否可嗅探。android模拟器提供了内置的tcpdump,我们使用这个来抓包。1. 启动带tcpdump的模拟器santoku@santoku-virtual-machine:~/Desktop$ emulator -avd avd1 -tcpdump 7-14.cap...
分类:
移动开发 时间:
2014-07-14 22:18:19
阅读次数:
433
在虚函数的声明的参数列表后加上“=0”就将函数变成了纯虚函数class Base{ virtual void function()=0;}我们不需要为纯虚函数Base::function()提供任何定义,那些声明了纯虚函数的类就是抽象类。任何试图创建一个抽象类对象的操作都会导致编译器错误。如果一个....
分类:
其他好文 时间:
2014-07-14 20:06:09
阅读次数:
258
一、tweak 工程 1、创建步骤 a) terminal cd 到想要存放项目的目录下 b) 按图步骤完成即可 二、工程文件描述 1、control 记录 deb 包管理系统所需的基本信息。 2、appInfo.plist描述 tweak 的作用范围,以下可混合使用 ...
分类:
其他好文 时间:
2014-07-14 19:47:18
阅读次数:
632