在vs2013中,可以写windowsphone 8.1的程序,但是调试时需要用到windows自带的虚拟机hyper-V正版的系统开启hyper—V的时候不会有问题,但是盗版的系统可能导致系统不稳定,甚至崩溃,而我正好有windowsphone8.1的手机,所以我在考虑用真机调试手机程序。 ...
分类:
移动开发 时间:
2015-04-03 23:46:50
阅读次数:
220
首先连接到数据库,获取ORACLE数据库的基本信息; C:\USERS\ADMINISTRATOR>SQLPLUS/NOLOG SQL*PLUS: RELEASE 10.2.0.3.0 - PRODUCTION ON 星期五 4月 3 09:53:50 2015 COPYRIGHT (C) 1982...
分类:
数据库 时间:
2015-04-03 13:12:37
阅读次数:
214
在_C++ Primer_动态数组中提到:动态分配一个空数组是合法的。 ``` size_t n = get_size(); int* p = new int[n]; for(int* q = p; q != p + n; ++q) char arr[0];//错误 char cp = new char[0]; ``` 当我们用new...
分类:
编程语言 时间:
2015-04-03 11:42:16
阅读次数:
139
problem:
Given a non-negative number represented as an array of digits, plus one to the number.
The digits are stored such that the most significant digit is at the head of the list....
分类:
其他好文 时间:
2015-04-03 11:26:38
阅读次数:
160
本次复习一方面是为了查漏补缺,另一方面也是更加深入的理解C++的思想精髓。在此记录复习中记录的各知识细节及理解,以便后续温故之用。第一张:快速入门
1. for语句: for(初始化语句;条件测试语句;条件修改表达式){ 语句体 } 。执行顺序:初始化语句在最开始执行一次,然后执行条件测试语句,若成立则执行语句体;然后再执行条件修改表达式,再执行条件测试语句,成立则继续,反之则退出for语句。...
分类:
编程语言 时间:
2015-04-02 18:59:51
阅读次数:
186
加减乘除表示运算:plus minus multiply divide和差积商表示运算结果:sum difference product quotient
分类:
系统相关 时间:
2015-04-02 14:37:42
阅读次数:
243
Plus One
Given a non-negative number represented as an array of digits, plus one to the number.
The digits are stored such that the most significant digit is at the head of the list.
解题思路:...
分类:
其他好文 时间:
2015-04-02 01:20:13
阅读次数:
152
1、申请gmail邮箱 2、环境要求: 用于开发和测试的物理设备,因为 Google Play 服务不能在模拟器中安装。 您的项目需要使用 Android 2.2 (Froyo) 或更高版本进行编译。 Eclipse 配置为使用 Java 1.6 需要手机支持Google Play 服务 SDK.....
分类:
其他好文 时间:
2015-04-01 19:19:31
阅读次数:
133
1,命令编译生成的默认输出文件(可执行文件) 命名为:a.out(Unix), a.exe(Windows)
2,cout输出首先会存到缓存中,而printf之类的输出会直接输出到输出流中。
3,可以从键盘上输入End-Of-File:Ctrl+d(Unix), Ctrl+z(Windows)。
4,C++中最常见的三种编译错误:1)类型错误,将值赋给不同类型的变量;...
分类:
编程语言 时间:
2015-04-01 15:29:18
阅读次数:
158
EXPDP,IMPDP远程导出,导入数据库到本地1.本地建立导出用户hr_exp并全然删除机hr的用户C:\Users\Administrator>sqlplus / as sysdbaSQL*Plus: Release 10.2.0.1.0 - Production on 星期一 10月 27 1...
分类:
其他好文 时间:
2015-04-01 12:58:34
阅读次数:
147