一、语法 1、 条件语句 IF (条件) then [如果……. 那么] ……… end 范例: If 人物等级() >= 35 then 执行脚本(“护境安民.txt”) End 2、 条件语句 IF (条件) then ...... else ...... end 范例: if 人物职业() = "古墓派" then _返回师门(True) else _返回师门(False) end 3、 循环语句 [满足条件循环] While (条件) …….. End 范例: While 人物等
oracl 和db2 常用语法比较: 1、取前N条记录 Oracle:Select * from TableName where rownum <= N; DB2:Select * from TableName fetch first N rows only; 2、取得系统日期 Oracle:Select sysdate from dual; DB2:Select current timestamp from sysibm.sysdummy1; 3、空值转换 Oracle:Select
C++11新标准增加的auto不仅可以自动推断变量类型,还能结合decltype来表示函数的返回值。这些新特性可以让我们写出更简洁、更现代的代码。
在泛型编程中,可能需要通过参数的运算来得到返回值的类型。
我们看一下下面这个例子:
#include
using namespace std;
template
R add(T t,U u)
{
return t+u;
}
int main()
{
int a=1;
float b=2.0;
auto c = add<dec