1 double a=-1.1,b=1.1; 2 double c=qAbs(a);//绝对值 3 double d=qMax(b,c);//返回最大值 4 int bn=qRound(b);//返回最接近的整数 5 int cn=qRound(c); 6 qSwap(bn,cn);//交换两个数