码迷,mamicode.com
首页 >  
搜索关键字:windows os    ( 207876个结果
Chap3: question: 11 - 18
11. double 数值的整数次方note: 浮点数表示时有误差,判等时必须自己根据精度要求实现。#include #include using namespace std;bool equal(double num1, double num2) // key 1{ if(num1 - num2 ...
分类:其他好文   时间:2014-07-22 23:11:56    阅读次数:436
【转载】mongoDB基本使用手册
1、基本操作db.AddUser(username,password) 添加用户db.auth(usrename,password) 设置数据库连接验证db.cloneDataBase(fromhost) 从目标服务器克隆一个数据库db.commandHelp(name) returns the h...
分类:数据库   时间:2014-07-22 23:11:54    阅读次数:449
iOS开发摇动手势实现详解
1.当设备摇动时,系统会算出加速计的值,并告知是否发生了摇动手势。系统只会运动开始和结束时通知你,并不会在运动发生的整个过程中始终向你报告每一次运动。例如,你快速摇动设备三次,那只会收到一个摇动事件。2,想要实现摇动手势,首先需要使视图控制器成为第一响应者,注意不是单独的控件。成为第一响应者最恰当的...
分类:移动开发   时间:2014-07-22 23:11:54    阅读次数:758
漫谈数据挖掘从入门到进阶
转载自:http://www.cnblogs.com/flclain/archive/2012/12/22/2829317.html入门:数据挖掘入门的书籍,中文的大体有这些:JiaweiHan的《数据挖掘概念与技术》IanH.Witten/EibeFrank的《数据挖掘实用机器学习技术》TomMi...
分类:其他好文   时间:2014-07-22 23:11:53    阅读次数:345
zbar 64位
ZBar 有个 scanCrop 属性,默认值是 (0,0,1,1)代表全屏。(http://www.cnblogs.com/xling/archive/2013/03/21/2972640.html)Readme(https://github.com/ZBar/ZBar/blob/master/i...
分类:其他好文   时间:2014-07-22 23:11:53    阅读次数:362
远程调试
一、服务器端远程调试设置linux下远程调试配置:1、新建startup_debug.sh2、在startup_debug.sh里加入如下内容:引用export JPDA_ADDRESS=5566catalina.sh jpda start3、启动startup_debug.sh在windows下远...
分类:其他好文   时间:2014-07-22 23:11:33    阅读次数:439
Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters fo...
分类:其他好文   时间:2014-07-22 23:11:32    阅读次数:388
SET Statements for SQLServer
SET SHOWPLAN_ALL { ON | OFF }It will not execute the TSQL statements.It cannot be specified inside a stored procedure,must be the only statements in a...
分类:数据库   时间:2014-07-22 23:11:32    阅读次数:646
《Thinking in C++》读书笔记——Chapter 3: The C in C++ (2)
Chapter3: The C in C++ (2)Bitwise operators(1)The bitwise exclusive or, or xor (^) produces a one in the output bit if one or the other input bit is a...
分类:编程语言   时间:2014-07-22 23:11:16    阅读次数:618
oracle控制文件
转载请注明出处控制文件(Control File)是Oracle的物理文件之一,它记录了数据库的物理结构(数据文件、日志文件等的名称和位置),数据库转载和打开都需要控制文件,还记录了日志序列号,检查点和日志历史信息,同步和恢复数据库都需要控制文件。控制文件包含以下信息: 数据名称 数据文件名称和位置...
分类:数据库   时间:2014-07-22 23:11:16    阅读次数:474
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!