码迷,mamicode.com
首页 >  
搜索关键字:bool    ( 16475个结果
listctrl查找定位 使用测试过还很好用
35、listctrl查找定位 使用测试过还很好用// 简单的查找函数// FindString(CListCtrl& , 查找内容 , 开始位置 , 到达底部时是否从头查找)int FindString(CListCtrl& list,LPCTSTR str,int startIndex,BOOL...
分类:其他好文   时间:2014-05-16 19:14:26    阅读次数:339
ios 控制器 modal 学习
代码创建: 1、appdelegate 把contoller放到跟controller下 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[UIWindow alloc] initWi...
分类:移动开发   时间:2014-05-15 14:57:06    阅读次数:456
根据图像路径,创建CBitmap对象的方法
因为项目的关系,需要根据图像路径,创建CBitmap对象。起初查资料找到了LoadBitmap这个函数,根据CSDN得BOOL LoadBitmap ( LPCTSTRlpszResourceName);ParameterslpszResourceName:Points to a null-term...
分类:其他好文   时间:2014-05-15 14:16:30    阅读次数:337
NYOJ287
//#define LOCAL#include#include#include#includeint const MAX_N=1001;typedef struct Point{ double x,y; bool operatorVec[i].y) { ...
分类:其他好文   时间:2014-05-15 13:51:08    阅读次数:230
Mac 显示隐藏文件夹
Mac下想看隐藏文件夹,没找到地方设置。 然后找到了下面的命令行。 显示/隐藏Mac隐藏文件命令如下(注意其中的空格): 显示Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool true 隐藏Mac隐藏文件的命令:defaults write com.apple.finder AppleShowA...
分类:其他好文   时间:2014-05-15 11:12:51    阅读次数:195
LeetCode Search in Rotated Sorted Array II
class Solution {public: bool search(int A[], int n, int target) { if (n A[mid]) { right = mid; sep = A[mid]; ...
分类:其他好文   时间:2014-05-15 09:29:52    阅读次数:177
CF:Problem 427C - Checkposts强连通 Tarjan算法
tarjan算法第一题    喷我一脸。。。。把手写栈的类型开成了BOOL,一直在找错。。。 #include #include #include #include #define maxn 100005 const int MOD=1000000007; using namespace std; struct node { int to,next; }edge[maxn...
分类:其他好文   时间:2014-05-15 08:18:56    阅读次数:353
hdu how many prime numbers 筛选法求素数
/* * hdu How many prime numbers * date 2014/5/13 * state AC */ #include #include #include using namespace std; bool isPrime(int x) { int sqr=sqrt(x*1.0); for(int i=2;i<=sqr;i++) {...
分类:其他好文   时间:2014-05-15 05:07:18    阅读次数:261
UI pop返回的三个方法
//返回到上一个视图-(UIViewController*)popViewControllerAnimated:(BOOL)animated;//返回到指定的视图-(NSArray*)popToViewController:(UIViewController*)viewControlleranimated:(BOOL)animated;//返回到第一页-(NSArray*)popToRootViewControllerAnimated:(BOOL)animated;
分类:其他好文   时间:2014-05-15 00:54:32    阅读次数:233
Git.Framework 框架随手记--ORM查询数据集合 一
本文记录Git.Framework之ORM中最为浓墨重彩的一篇,查询集合。根据自己做的项目统计这个是使用频率最高的一个。 一. 查询集合方法简介(1)List GetList();(2)List GetList(bool isOpenTrans);(3)List GetList(T entit...
分类:其他好文   时间:2014-05-14 10:44:11    阅读次数:374
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!