如果使用typedef 是这样的//可以把一个小写字母变成大写//char
(*pFun)(char); typedef char (*PTRFUN)(char); PTRFUN pFun; char glFun(char a){
return a & 223;} void print(int a....
分类:
编程语言 时间:
2014-05-17 01:24:44
阅读次数:
315
1 #include 2 #include 3 #include 4 using namespace
std; 5 6 int get2(long long n){ 7 if(n==0) 8 return 0; 9 int cnt =0;10 whi...
分类:
其他好文 时间:
2014-05-13 21:03:03
阅读次数:
329
1 /** 2 极角排序输出,,, 3 主要atan2(y,x) 容易失精度,,用 4 bool
cmp(point a,point b){ 5 if(cross(a-tmp,b-tmp)>0) 6 return 1; 7
if(cross(a-tmp,b-tmp)...
分类:
其他好文 时间:
2014-05-13 20:05:34
阅读次数:
242
大致题意:给出一个整数n,(1 int n,flat;unsigned long long
b;void DFS(unsigned long long a,int step){ if(flat||step==19) { return ; }
if(a%n==0)...
分类:
其他好文 时间:
2014-05-13 19:59:23
阅读次数:
276
create or replace function get_sal1(id
employees.employee_id%type) return number is sal employees.salary%type;begin sal
:= 0; select salary into s...
分类:
数据库 时间:
2014-05-13 19:41:58
阅读次数:
456
在学习unity3d的时候很容易看到下面这个例子:1 void Start () {2
StartCoroutine(Destroy());3 }4 5 IEnumerator Destroy(){6 yield return
WaitForSeconds(3.0f);7 ...
分类:
其他好文 时间:
2014-05-13 19:16:24
阅读次数:
380
在ob_clean();或ob_get_clean()之前有return或致命错误,从而结束了程序,会导致ob_start失效,这和phpunit的非正常结束
分类:
Web程序 时间:
2014-05-13 18:36:16
阅读次数:
267
第一次写博客,大家多多关照!欢迎拍砖哦! 我也刚学设计模式,所以记录下来。 $name))
$this->$name=$value; } public function __get($name){
if(isset($this->$name)) return $this->$name;...
分类:
Web程序 时间:
2014-05-13 16:44:27
阅读次数:
390
效果图:
程序代码:
bool HelloWorld::init()
{
//////////////////////////////
// 1. super init first
if ( !CCLayer::init() )
{
return false;
}
CCSize visibleSize =...
分类:
移动开发 时间:
2014-05-13 16:27:03
阅读次数:
402
本文出自:http://blog.csdn.net/svitter
实验环境:Myeclipse10 + tomcat7.0
有时间会写windows和linux下的tomcat配置,现在时间有限,暂且不写了。。有些东西也是没有理解透彻。
<%!
String getDate()
{return new java.util.Date().toLocaleStrin...
分类:
Web程序 时间:
2014-05-13 16:11:36
阅读次数:
370