码迷,mamicode.com
首页 >  
搜索关键字:bool    ( 16475个结果
设备翻转时viewController调用的方法
要翻转的时候, 首先响应的方法: -(BOOL)shouldAutorotateToInterf aceOrientation:(UIInterfaceOrientation)interfaceOrientation。 return YES则支持翻转,NO则不支持。 紧接着 -(void)willRotateToInterfaceOrientation:(UIInterfaceOr...
分类:其他好文   时间:2014-06-05 08:33:55    阅读次数:142
hdu 1016 Prime Ring Problem (dfs)
一切见注释。 #include #include #include #include using namespace std; bool vis[22]; int n; int ans[22]; int top; bool isprime(int x)//判断素数 { for(int i=2;i<x;i++) if(x%i==0)return false; ...
分类:其他好文   时间:2014-06-05 08:26:47    阅读次数:201
Cocos2d-x 精灵碰撞检测(方法一)
声明函数碰撞检测函数,两个精灵和重写update bool isCollision( CCPoint p1,CCPoint p2,int w1,int h1,int w2,int h2 ); CCSprite *sp2; CCSprite *sp1; virtual void update(float delta); //重写触摸事件 virtual void regi...
分类:其他好文   时间:2014-06-05 07:12:15    阅读次数:236
C语言零基础项目驱动式学习第二天
//BOOL 类型是一种非真即假的数据类型,取值只有YES和NO, //BOOL 其实是OC中得数据类型,在C语言中,认为非0即为真. //BOOL 类型规定的存储空间为一个字节.// BOOL a = YES;// BOOL b = NO;// printf("a = %d, b = ...
分类:编程语言   时间:2014-06-04 18:47:51    阅读次数:272
在CDHtmlDialog中处理WindowClosing
要截获window.close(),就得截获CDHtmlDialog的WindowClosing。以下是示例代码:// headerDECLARE_EVENTSINK_MAP()void WindowClosing(VARIANT_BOOL IsChildWindow, VARIANT...
分类:Windows程序   时间:2014-06-03 14:15:11    阅读次数:389
3、如何实现拖动PictureBox控件
C#中如何实现拖动PictureBox控件思路是这样的.得有三个变量.记录x坐标: int xPos;记录y坐标: int yPos;记录是否按下鼠标: bool MoveFlag;//在picturebox的鼠标按下事件里,记录三个变量.private void picBox_MouseDown(...
分类:其他好文   时间:2014-06-03 11:16:58    阅读次数:258
禁止CListCtrl 的水平滚动条
禁止CListCtrl 的水平滚动条 分类: VC基础知识温习 2011-02-11 11:58 669人阅读 评论(1) 收藏 举报ON_WM_NCCALCSIZE() void CMyListCtrl::OnNcCalcSize(BOOL bCalcValidRects, NCCALCSIZE_...
分类:其他好文   时间:2014-05-31 08:19:17    阅读次数:337
【STL源码学习】STL算法学习之三
第一章:前言 数量不多,用到的时候会很爽。 第二章:明细 STL算法中的又一个分类:分割;将已有元素按照既定规则分割成两部分。 is_partitioned 函数原型: template bool is_partitioned (InputIterator first, InputIterat...
分类:其他好文   时间:2014-05-31 03:19:43    阅读次数:230
递归判断一个数是否递增
#includeusing namespace std;//是否单调递增bool isdan(int a[],int lev,int len){ if(len==1) return true; if(lev==len-1) { return true; } else { if(a[lev]>a[le...
分类:其他好文   时间:2014-05-31 01:21:47    阅读次数:257
LeetCode --- Valid Palindrome
题目链接判断字符串是否为回文串。附上代码: 1 class Solution { 2 public: 3 bool isPalindrome(string s) { 4 if (s.empty()) return true; // consider empty string ...
分类:其他好文   时间:2014-05-30 21:48:12    阅读次数:347
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!