结论:热升级时用fun() -> end
可能导致升级失败,
原因:local call在作怪啦
分类:
其他好文 时间:
2014-08-08 15:54:06
阅读次数:
177
#include
#define N 8
typedef struct{
char num[10];
double s[N];
double ave;
}STREC;
void fun(STREC *a)
{
int i;
a->ave=0;
for(i=0;iave=a->ave+a->s[i];
a->ave=a->ave/N;
}
void main(...
分类:
其他好文 时间:
2014-08-08 12:59:25
阅读次数:
238
create() ->mnesia:create_table(?ID_TABLE, [{disc_copies, [node()]}, {attributes, record_info(fields, unique_id)}]),Fun = fun(Old) ->#game_server_data{...
分类:
数据库 时间:
2014-08-07 21:43:30
阅读次数:
241
1、交换两个数 方法1、a+b有可能越界 a=a+b; b=a-b; a=a-b; 方法二、不会越界 a=a^b b=a^b; a=a^b; 2、extern “C”用法 ( 自己总结: 1、C++语言引用C语言函数时(void fun(int a,int b),void fun(int a,flo...
分类:
其他好文 时间:
2014-08-07 00:44:17
阅读次数:
258
#include #include using namespace std;//传入的参数是数组的引用,返回值也是数组的引用string (&fun(string (&s)[10]))[10]{ return s;}//using str_arr = string (&)[10];/*type...
分类:
其他好文 时间:
2014-08-06 22:29:52
阅读次数:
343
#include
#include
#include
/*
压栈顺序
从右到左,从上到下压
*/
int fun(int i, char * s)
{
/*
编译器中等同于
int a;
int b;
*/
int a,d;
printf("&s = 0x%08x\n", &s);
printf("&i = 0x%08x\n", &i);
printf("&f = 0x%08x\n", &fun);
print...
分类:
其他好文 时间:
2014-08-06 19:24:12
阅读次数:
286
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4506题目大意;找规律,判断k的t次幂前面的系数。 1 #include 2 #include 3 using namespace std; 4 5 __int64 fun(__int64 a,__...
分类:
其他好文 时间:
2014-08-06 17:28:41
阅读次数:
131
就私有静态成员而言,指的是成员具有如下属性:1.以同一个构造函数创建的所有对象共享该成员。2.构造函数外部不可访问该成员。//构造函数var Gadget = (function(){//静态变量/属性var counter = 0, NewGadGet; NewGadget = fun...
分类:
编程语言 时间:
2014-08-06 17:27:21
阅读次数:
228
条件:根目录下两个文件夹fun,head
./fun/function.h ./fun/function.c
./head/define.h
./main.c
以下为对应的文件源码,相对比较简单,仅仅起一个抛砖引玉的作用,到时候只需要照搬就行。
function.h
#include
#include
#include "../head/define.h"
void show_h...
分类:
数据库 时间:
2014-08-06 02:04:50
阅读次数:
245
顺序查找:在一个 已知无序队列中找出 与 给定关键字相同的数的具体位置。原理是让关键字与队列中的数从第一个开始逐个比较,直到找出与给定关键字相同的数为止。复杂度为o(n).#includeint fun(int a[],int n,int x){ int i; for(i=0;i//顺序查找...
分类:
其他好文 时间:
2014-08-05 21:48:30
阅读次数:
309