码迷,mamicode.com
首页 >  
搜索关键字:add datafile    ( 37307个结果
第12周——教师干部类
#include using namespace std; class Teacher { public: Teacher(string nam,int ag,string add,string tel,string se,string ti): name(nam),age(ag),addr(add),telnum(tel),sex(se),title...
分类:其他好文   时间:2014-05-15 14:41:33    阅读次数:222
【LeetCode】Two Sum
Two SumGiven an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the...
分类:其他好文   时间:2014-05-15 10:48:59    阅读次数:322
Linux下chkconfig命令详解
chkconfig命令主要用来更新(启动或停止)和查询系统服务的运行级信息。谨记chkconfig不是立即自动禁止或激活一个服务,它只是简单的改变了符号连接。使用语法:chkconfig [--add][--del][--list][系统服务] 或 chkconfig [--level ][系统服务...
分类:系统相关   时间:2014-05-15 10:28:17    阅读次数:406
Linux设置开机服务自动启动
[root@localhost ~]# chkconfig --list 显示开机可以自动启动的服务[root@localhost ~]# chkconfig --add *** 添加开机自动启动***服务[root@localhost ~]# chkconfig --del *** 删除开机自动启...
分类:系统相关   时间:2014-05-15 09:47:40    阅读次数:367
cocos2d-x 绘制图形
绘制图形如下:   程序代码: 需要重新定义父类虚函数draw() 1、在HelloWorldScene.h头文件加入: virtual void draw(); 2、定义实现: void HelloWorld::draw() { //add your code.... CHECK_GL_ERROR_DEBUG(); CCSize size = CC...
分类:其他好文   时间:2014-05-15 09:10:32    阅读次数:285
如何使用git 生成patch
1,下载代码 git clone git://git.kernel.org/pub/scm/linux/kernel/git/padovan/bluetooth-next-2.6.git cd bluetooth-next-2.6 2,修改代码 vi drivers/bluetooth/btusb.c 3,把代码添加到git管理仓库 git add drivers/bluetooth/...
分类:其他好文   时间:2014-05-15 02:59:38    阅读次数:386
eclipse 搭建salesforce开发环境
Launch Eclipse and click Help > Install New Software.... Click Add.... In the Add Repository dialog, set the Name to "Force.com IDE" and the Location to "http://media.developerforce.com/...
分类:系统相关   时间:2014-05-15 02:51:11    阅读次数:480
【LeetCode】- Two Sum(两数相加)
[ 问题: ] Given an array of integers, find two numbers such that they add up to a specific target number. The function twoSum should return indices of the two numbers such that they add up to the ta...
分类:其他好文   时间:2014-05-15 00:04:39    阅读次数:377
Java Web项目中缺少Java EE 6 Libraries怎么添加
Java Web项目中缺少Java EE 6 Libraries怎么添加 具体步骤如下: 1、项目名称上点击鼠标右键,选择“Build Path-->Configure Build Path-->Java Build Path” 2、单击“Add Library...” 3、选择“User Library”,单击“Next” 4、单...
分类:编程语言   时间:2014-05-14 23:58:13    阅读次数:619
配置主机路由表(route)(二)
我们在网路基础的时候谈过关于路由的问题,两部主机之间一定要有路由才能够互通 TCP/IP 的协定,否则就无法进行连线啊! 一般来说,只要有网路介面,该介面就会产生一个路由,例如在鸟哥实验室内部的主机有一个 eth0 及 lo ,所以: [root@desktop40 Desktop]#  route [-nee] [root@desktop40 Desktop]#  route add [-...
分类:其他好文   时间:2014-05-14 20:38:13    阅读次数:262
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!