码迷,mamicode.com
首页 >  
搜索关键字:bool    ( 16475个结果
Window获取所有运行的进程
通过遍历任务管理器,输出当前正在运行的进程ID和Name。 同时打印出遍历过程所消耗的时间。/* @Date:2014/6/8 @Author:Alex */ #include #include #include #include #include using namespace std; bool traverseProcesses(map &_mapProcess)...
分类:Windows程序   时间:2014-06-11 06:56:55    阅读次数:280
uva Children's Game
非常巧妙的题目,巧用cmp,注意cmp的重载 #include #include using namespace std; string a[55]; bool cmp(string a, string b){ return a+b > b+a; } int main(int argc, char const *argv[]) { int n; while(cin >...
分类:其他好文   时间:2014-06-11 06:10:28    阅读次数:293
PHP中CURL方法curl_setopt()函数的一些参数
bool curl_setopt (int ch, string option, mixed value)curl_setopt()函数将为一个CURL会话设置选项。option参数是你想要的设置,value是这个选项给定的值。下列选项的值将被作为长整形使用(在option参数中指定):? CURL...
分类:Web程序   时间:2014-06-09 20:05:33    阅读次数:374
ios学习笔记---c语言第二天
一、bool布尔类型 c语言没有bool类型,oc里有bool类型是一种非真即假的数据类型,布尔类型的变量只有yes和no两个值。yes表示表达式是真,no表示表达式是假。在c语言中认为非0即为真。分支语句中常用bool值做判断,判断执行if语句还是else语句。循环结构中,也常使用bool值做判....
分类:移动开发   时间:2014-06-09 19:02:09    阅读次数:284
[整理]标准C中的"布尔"类型
C语言提供的基本数据类型:char , int ,float, double。为什么没有其他语言中常见bool布尔数据类型呢?1.在标准C语言(ANSI C)中并没有bool数据类型 标准C中,表达式的值0为假,非0为真。一般,为了提高代码可阅读性,自定义3个int类型的宏:#include #de...
分类:其他好文   时间:2014-06-09 18:49:45    阅读次数:281
[LeetCode OJ] Max Points on a Line—Given n points on a 2D plane, find the maximum number of points that lie on the same straight line.
//定义二维平面上的点struct Point{ int x; int y; Point(int a=0, int b=0):x(a),y(b){}};bool operator==(const Point& left, const Point& right){ return...
分类:其他好文   时间:2014-06-08 22:26:17    阅读次数:357
判断字符串是否为 utf-8 编码
代码清单: <?php /** * 判断字符串是否为utf8编码,英文和半角字符返回ture * @author ruxing.li * @param $string * @return bool */ function is_utf8($string) { return preg_match('%^(?: [\x09\x0A\x0D\x...
分类:其他好文   时间:2014-06-08 10:47:58    阅读次数:267
割点 桥 双连通分量模版
求割点 const int maxn = 1010; vector a[maxn], bcc[maxn]; int pre[maxn]; int low[maxn]; bool iscut[maxn]; int bccno[maxn]; int cnt[maxn]; int dfs_clock; int bcc_cnt; int n; struct Edge { int u, v; };...
分类:其他好文   时间:2014-06-08 05:54:36    阅读次数:270
Swift 入门教程
第1章基础知识 虽说 Swift 是开发 iOS 及 OS X 应用的一门新编程语言,但它的开发体验与 C 或 Objective-C 有很多相似之处。 Swift 重新实现了 C 与 Objective-C 中的所有基础类型,包括表示整数的 Int,表示浮点数的 Double 与 Float,表示布尔值的 Bool,以及表示纯文本数据的 String。 Swift 还为两个基本集合类...
分类:其他好文   时间:2014-06-08 04:41:10    阅读次数:224
iOS安全攻防(二十四):敏感逻辑的保护方案(1)
iOS安全攻防(二十四):敏感逻辑的保护方案(1)Objective-C代码容易被hook,暴露信息太赤裸裸,为了安全,改用C来写吧!当然不是全部代码都要C来写,我指的是敏感业务逻辑代码。本文就介绍一种低学习成本的,简易的,Objective-C逻辑代码重构为C代码的办法。也许,程序中存在一个类似这样的类:@interface XXUtil : NSObject + (BOOL)isVerifi...
分类:移动开发   时间:2014-06-08 03:13:24    阅读次数:307
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!