SyntaxHighlighter

2009年11月25日星期三

c++ static关键字

static关键词声明成员变量,作用为在所有实例中保存同一个变量.
在.h中这样声明:

class CStage
{
public:
CStage(void);
~CStage(void);
static float key_timer;
static float countdown_timer;
};

在.cpp中这样初始化:

#include "Stage.h"

CStage::CStage(void)
{
}

CStage::~CStage(void)
{
}

float CStage::key_timer = -1.0f;
float CStage::countdown_timer = 180.0f;

2009年11月22日星期日

win7好软介绍 - Jumplist-Launcher

[caption id="" align="alignnone" width="291" caption="jumplist in xp"][/caption]

还记得这个XP时代我们在任务栏自建的快捷启动方式么?

到vista以后我就很少用这个好用的自建文件夹式的jumplist了.

到了win7时代,任务栏默认支持jumplist,于是就有好人开发了很好用的Jumplist-Launcher.

[caption id="" align="alignnone" width="288" caption="jumplist-launcher"]jumplist-launcher[/caption]

jumplist-launcher的优势有:

  • 免安装,无注册表垃圾

  • 最高支持60个项目

  • 可分组

  • 可以设置成左键点击打开jumplist

  • 每个项目可以带启动参数

  • jumplist被创建之后程序无需运行

  • 可以在任务栏放置多个jumplist

  • 可以直接拖拽项目到jumplist

  • 项目的名称可自定义


[caption id="" align="aligncenter" width="474" caption="jumplist-launcher config"]jumplist-launcher config[/caption]

详情与下载请访问官方网站:http://en.www.ali.dj/jumplist-launcher/