- 博客(13)
- 收藏
- 关注
原创 Week3
2. 任意输入三条边(a,b,c实型),若能构成三角形,则计算并输出其面积,否则输出标志“No Triangle!” #include #include using namespace std; int main() { int a, b, c; cin >> a >> b >> c; if(a + b > c && a + c > b && b + c > a) { i
2013-10-18 10:40:31 384
原创 习题10.18、10.19
#include #include #include #include #include #include using namespace std; int main() { map > > family; string value, child, date; vector > children; pair > >::iterator, bool> pit; for (i
2013-06-26 09:35:32 323
原创 C++ Primer 习题 5.18 vector中存放指针
#include #include #include using namespace std; int main() { string value; // vector *ps; // typedef vector *vstring; // vstring ps; vector ps; while (cin >> value) { string *sp = new s
2013-06-14 11:52:37 487
原创 C++ Primer 习题 4.34
#include #include #include #include using namespace std; int main() { string value; vector vs; while (cin >> value) vs.push_back(value); int d_x = 0, d_y; d_y = vs.size(); int di[d_y];
2013-06-13 22:14:44 375
原创 sublime && c++ 配置问题
配置完gcc和sublime后,编译C++程序不显示结果 Ctrl+` 显示错误信息为 UnicodeDecodeError: 'ascii' codec can't decode byte 0xc8 in position 3: ordinal not in range(128) 这个问题的起因是配置文件目录下Packages\Default目录下的exec.py在编辑环境
2013-06-04 00:11:08 657
原创 SharedPreferences
[size=medium]Preferences首选项 用来保存一些简单的数据,一般为程序启动时的预设参数 通过SharedPreferences来存取 SharedPreferences接口主要负责读取程序的Preferences数据; 通过SharedPreferences的内部接口来提供写入数据的能力,即调用edit()方法。 Preferences累死于Map Collectio...
2012-04-20 10:28:58 67
原创 使用自定义View,在XML布局文件中应使用全限定类名
[size=medium]public class MyButton extends Button [/size]
2012-04-12 20:13:44 294
原创 intent和Pendingintent 的区别
[size=medium]ntent英文意思是意图,pending表示即将发生或来临的事情。 PendingIntent这个类用于处理即将发生的事情。比如在通知Notification中用于跳转页面,但不是马上跳转。 Intent 是及时启动,intent 随所在的activity 消失而消失。 PendingIntent 可以看作是对intent的包装,通常通过getActivi...
2012-04-11 14:33:22 97
原创 装载/res/layout/xxx.xml界面布局文件
[size=medium]TableLayout loginForm = (TableLayout)getLayoutInflater().inflate(R.layout.login, null); 设置对话框布局XML builder.setView(loginForm); 对话框风格的窗口,把显示窗口的Activity的风格设为对话框风格即可。 在AndroidManif...
2012-04-10 20:34:07 507
原创 SimpleAdapter
[size=medium]public constructors public SimpleAdapter (Context context, List> data, int resource, String[] from, int[] to) context The context where the View associated with this SimpleAdapter...
2012-04-09 10:39:42 68
原创 TabHost
设置使用TabHost布局 LayoutInflater.from(this).inflate(R.layout.main, tabHost.getTabContentView(),true); 添加标签页 tabHost.addTab(tabHost.newTabSpec("tab1").setIndicator("SeekBar").setContent(...
2012-04-08 19:54:26 65
原创 requestWindowFeature
requestWindowFeature必须放置在 setContentView之前 setProgress(int) The progress for the progress bar. Valid ranges are from 0 to 10000 (both inclusive). If 10000 is given, the progress bar will be co...
2012-04-08 14:35:08 72
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人