摘要: 1. 安装Qt集成环境 sudo apt-get install qt4-dev-tools qt4-doc qt4-qtconfig qt4-demos qt4-designer2. 编写一个简单的Qt程序生成一个简单的窗口#include<QApplication>#include<QLabel>intmain(intargc,char*argv[]){QApplicationapp(argc,argv);QLabel*label=newQLabel("HelloQt!");label->show();returnapp.exec();}3 阅读全文
posted @ 2012-05-29 15:25 Master HaKu 阅读(769) 评论(0) 推荐(0) 编辑
摘要: 1. 首先安装g++ sudo apt-get install build-essential2. 输入一个简单的cpp程序#includeusingnamespacestd;intmain(){cout<<"HelloUbuntu!"<<endl;return0;}3. 编译 david@ubun... 阅读全文
posted @ 2012-05-29 15:00 Master HaKu 阅读(2424) 评论(0) 推荐(0) 编辑
摘要: 类接口文件(MathDiv.h)#import<Foundation/Foundation.h>//DefinetheFractionclass@interfaceFraction:NSObject{intdividend;intdivider;}@propertyintdividend,divider;-(void)print;-(void)setTo:(int)nover:(int)d;-(double)convertToNum;@end类实现文件(MathDiv.m)#import"Fraction.h"@implementationFraction@sy 阅读全文
posted @ 2012-05-29 11:48 Master HaKu 阅读(2773) 评论(0) 推荐(0) 编辑
摘要: TableLayout有个属性shrinkColumns让第2,3,4列自动伸缩:android:shrinkColumns="1,2,3"效果如下: 阅读全文
posted @ 2012-05-29 09:41 Master HaKu 阅读(3376) 评论(0) 推荐(0) 编辑