一般的书或者教程上的安装步骤是:(需要是-g,即全局安装)npm install -g
express
//全局安装而我们应该多多关注下express的文档,github地址:https://github.com/visionmedia/express#quick-start提示express的安....
分类:
Web程序 时间:
2014-05-05 22:33:19
阅读次数:
422
本文使用xml来创建上下文菜单
orderInCategory属性为排列顺序MyActivity的布局: MyActivity.javapackage
com.example.contextMenuTest;import android.app.Activity;...
分类:
移动开发 时间:
2014-05-05 21:41:07
阅读次数:
445
Problem Description
Given an positive integer A (1
For example, given A = 26, we can write A in binary form as 11010, so the lowest bit of A is 10, so the output should be 2.
Another example...
分类:
其他好文 时间:
2014-05-05 13:22:39
阅读次数:
394
apk file 其实就是zip文件, 可以将其重命名为zip文件,然后用unzip命令解压。unzip example1.apk -d ./example_dir
tree
.
├── AndroidManifest.xml
├── classes.dex
├── META-INF
│ ├── CERT.RSA
│ ├── CERT.SF
│ └── MANIFEST.MF
├── ...
分类:
移动开发 时间:
2014-05-05 13:12:59
阅读次数:
469
文件存储的用途:
A File object is suited to reading or writing large amounts of data in start-to-finish order without skipping around. For example, it's good for image files or anything exchanged over a netw...
分类:
移动开发 时间:
2014-05-05 13:01:21
阅读次数:
339
linux(虚拟机fedora9)环境下安装qt的过程主要是按照下面几网页上的教程完成的。http://mobile.51cto.com/symbian-272869.htmhttp://www.cnblogs.com/emouse/archive/2013/01/28/2880142.htmlht...
分类:
系统相关 时间:
2014-05-04 11:36:10
阅读次数:
313
Input
t – the number of numbers in list, then t lines follow [t
Each line contains one integer: N [0 N
Output
Output given numbers in non decreasing order.
Example
Input:
5
5
3
...
分类:
其他好文 时间:
2014-05-04 00:04:09
阅读次数:
376
相关环境信息:开发机Win7 x64、远程机器WinXP、调试器是CDB、Qt版本5.2.1
一、部署远程机器环境
我这里用的是虚拟机(Windows XP),根据你要调试的程序选择安装不同架构的WinDbg,因为安装文件不大,所以我一般都会装上
附上下载地址:
dbg_i386_6.12.2.633:http://download.csdn.net/detail/aqtata/7...
分类:
数据库 时间:
2014-05-03 21:49:21
阅读次数:
745
提出疑问
当我们新建一个Qt的图形工程时,你有没有对如下代码感到好奇?MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow) 派生类继承的基类不同以往,竟然是带有参数的,那么这个怎么理解呢?...
分类:
编程语言 时间:
2014-05-03 16:27:01
阅读次数:
344
把一般式子转换成逆波兰式。
这里的都是加括号的,难度降低点。
Example
Input:
3
(a+(b*c))
((a+b)*(z+x))
((a+t)*((b+(a+c))^(c+d)))
Output:
abc*+
ab+zx+*
at+bac++cd+^*
知道其特点就好办:
1 遇到字母一定是可以输出的
2 遇到操作符号就入栈
3 遇到括号')',就出栈...
分类:
其他好文 时间:
2014-05-03 15:35:28
阅读次数:
317