摘要: 1. 什么是Shell 人输入类似英语的计算机命令到命令解析器,再由命令解析器将这些命令翻译成计算机的机器指令交由计算机执行。在Linux或者UNIX操作系统上,这个命令解析器就叫Shell。 Shell的功能是将用户输入的命令翻译成Linux内核能够理解的语言,这样Linux的内核才能真正地操作计算机的硬件。 在UNIX和Linux操作系统上存在许多种shell,这是因为参与UNIX开发的人员众多,开发人员根据自己的理解和需要开发出多种不同类型的shell。包括:Bourn shell、C shell、Z shell等等,我们介绍Bourn-Again shell简称bash 查看所有的s. 阅读全文
posted @ 2013-01-07 17:40 wiessharling 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 代码如下:int main(int argc, char *argv[]){ QApplication a(argc, argv); QSplashScreen *splash=new QSplashScreen; splash->setPixmap(QPixmap(":/Game.jpg")); splash->show(); Qt::Alignment topRight=Qt::AlignRight|Qt::AlignTop; splash->showMessage(QObject::tr("Setting up the applicatio 阅读全文
posted @ 2013-01-07 13:22 wiessharling 阅读(186) 评论(0) 推荐(0) 编辑