1. Terms and conditions(法律与条款) 1.1 ?As a developer of applications for the App Store you are bound by the terms of the?Program License Agreement?(PLA), Human Interface Guidelines (HIG), ...
分类:
移动开发 时间:
2014-09-18 13:25:14
阅读次数:
301
环境:win7 64 sp1 PG:9.3.5 1、创建用户postgres,密码同样是postgres: net user postgres postgres /add 2、在数据库根目录下建立data目录: C:\Program Files\PostgreSQL\9.3>md data 3、去掉administrator对d...
分类:
数据库 时间:
2014-09-18 11:41:14
阅读次数:
308
在《接口的显式实现与隐式实现》中讲到了接口的显式实现,那有什么作用呢?我们来看一段代码。
class Program
{
static void Main(string[] args)
{
SimpleOutput s = new SimpleOutput();
IOutput io = s;
...
分类:
其他好文 时间:
2014-09-18 11:33:23
阅读次数:
138
按照网上的说法:Failed to get the adb version: Cannot run program "adb": error=2, 没有那个文件或目录64位系统,Ubuntu11.04,搭建JDK,Android环境,把android SDK复制过来后,里面的adb和其它命令的都不能...
分类:
移动开发 时间:
2014-09-18 00:42:02
阅读次数:
203
A method and apparatus for aatomicoperationis described. A method comprises receiving a first program unit in a parallel computing environment, the fi...
分类:
移动开发 时间:
2014-09-18 00:30:13
阅读次数:
443
假设有一个规定长度的数组,如何扩容呢?最容易想到的是通过如下方式扩容: class Program { static void Main(string[] args) { int[] arrs = new[] {1, 2, 3, 4, 5}; arrs[5] = 6; } }
报错...
分类:
其他好文 时间:
2014-09-17 23:11:42
阅读次数:
332
1.path的作用
path是系统用来指定可执行文件的完整路径,即使不在path中设置JDK的路径也可执行JAVA文件,但必须把完整的路径写出来,如C:\Program Files\Java\jdk1.6.0_10\bin\javac TheClass.java。path是用来搜索所执行的可执行文件路径的,如果执行的可执行文件不在当前目录下,那就会依次搜索path中设置的路径;而ja...
分类:
其他好文 时间:
2014-09-17 21:57:32
阅读次数:
312
在gdb调试时segmentation fault问题时,遇到下面的了问题:Program received signal SIGABRT, Aborted.0x00007ffff73eb925 in raise (sig=6) at ../nptl/sysdeps/unix/sysv/linux/...
分类:
数据库 时间:
2014-09-17 18:09:52
阅读次数:
344
//this is a program witch played by two people
//二人游戏,若第一个抛骰子,抛两次的和为7或11则第一人直接胜利,第二人直接失败
//若第一个人抛骰子,抛两次的和为2,3或12,则第一个人直接失败,第二人胜利
//若第一个人抛筛子,抛两次的和以上均不是,则由第二个人抛,直到有一方胜利
#include
#include
#include //...
分类:
编程语言 时间:
2014-09-17 16:56:42
阅读次数:
260
以本人安装XML的插件xmlbuddy为例: 我的eclipse安装在F:\Program Files\eclipse上,在eclipse目录上建立2个自定义文件夹,一个放插件文件,一个link路径文件。本人的插件文件夹为MYplugins,link文件夹为links。...
分类:
系统相关 时间:
2014-09-17 15:41:02
阅读次数:
273