file/seek.c#include "apue.h"intmain(void){ if (lseek(STDIN_FILENO, 0, SEEK_CUR) == -1) printf("cannot seek\n"); else printf("seek OK\n"); exit(0);}
分类:
其他好文 时间:
2014-07-18 23:27:20
阅读次数:
187
开发时,经常用到NSLog,但release是又想一次过清掉all NSLog,方法是:在xxx-Prefix.pch里添加[cpp]view plaincopy#ifdefDEBUG#defineDLog(...)NSLog(__VA_ARGS__)#else#defineDLog(...)/**...
分类:
移动开发 时间:
2014-07-18 21:05:57
阅读次数:
221
select case when grouping(姓名)=1 then '合计' else cast(姓名 as varchar) end 姓名, case when grouping(学期)=1 and grouping(姓名)=0 then '姓名小计' else cast(学...
分类:
数据库 时间:
2014-07-18 17:10:30
阅读次数:
303
Java语言的关键字有:(所有的关键字都是小写)abstract、boolean、break、byte、case、catch、char、class、continue、default、do、double、else、extends、false、final、finally、float、for、if、imp...
分类:
编程语言 时间:
2014-07-18 16:08:14
阅读次数:
235
Each else for which the choice of assocated if is ambiguous shall be associated with the nearest possible if that would otherwise hava no correspondin...
分类:
其他好文 时间:
2014-07-18 14:25:57
阅读次数:
208
选择结构(一)1、基本if选择结构:可以处理单一或组合条件的情况。语法:if(条件){代码块}2、if-else选择结构:可以处理简单的条件分支情况。语法:if(条件){代码块1}else{代码块2}3、多重if选择结构:可以处理复杂的条件分支情况。其中,else-if块可以有多个,也 可...
分类:
编程语言 时间:
2014-07-18 10:18:53
阅读次数:
195
bool SetWindowTop(CWnd* pWnd){ if(!pWnd) { return false; } if(pWnd->GetExStyle()&WS_EX_TOPMOST) { return true; } else { int i= pWnd->SetWindowPos(&CWn...
分类:
其他好文 时间:
2014-07-18 09:20:33
阅读次数:
180
利用TimerHandler做一个闪烁10次的效果pEntity.registerUpdateHandler(newTimerHandler(0.3f,true,newITimerCallback(){intcount=20;@OverridepublicvoidonTimePassed(TimerHandlerpTimerHandler){count--;if(count>0){pEntity.setVisible(count%2==1);}else{pEntity.unregi..
分类:
其他好文 时间:
2014-07-17 15:10:08
阅读次数:
282
竖直拍照if (Integer.parseInt(Build.VERSION.SDK) >= 8) { camera.setDisplayOrientation(90); } else { if (getResources().getConfiguration().ori...
分类:
移动开发 时间:
2014-07-17 14:34:49
阅读次数:
252
题解:简单博弈论#include int main(){ int n; while(scanf("%d",&n),n!=0) if (n&1) puts("Bob"); else puts("Alice"); return 0;}
分类:
其他好文 时间:
2014-07-17 10:01:29
阅读次数:
259