?? gloable.h
字號:
#ifndef GLOABLE_H_
#define GLOABLE_H_
#include "math.h"
#include <string.h>
#include "iostream.h"
#include "stdio.h"
#include "stdlib.h"
#include "DataType.h"
#define INT_MAXVALUE (1<<31-1)
extern double log2(double fValue);
extern int ceilfloor(double x);
template <class T>
extern void InitializeArray(T *pArray,int n, T & value)
{
int i;
for (i=0;i<n;i++)
pArray[i]=value;
}
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -