主要介绍运算符,和数学函数以及三元运算符:
package testbotoo; public class test1 { public static void main(String[] args) { int a = 122; System.out.println("调用operation的结果是:"+operation(a)); //调用下面定义的方法 }; public static int operation(int v){ int xe = v + 1; int and = 10; return xe ; } }
运算符,基本和python的类似,只是这里用的是 && 表示 and,用 || 表示 or :
/*关系运算符*/ expression1 && expression2 //相当于python中的 expression1 and expression2 expression1 || expression2 //相当于python中的 expression1 or expression2
三元操作符:
/*三元操作符*/ condition ? expression1 : expression2 //当条件condition为真的时候,计算第一个表达式,否则计算第二个表达式 例如: x < y ? x : y //上述就是求 x 和 y 中的的最小的一个
常用数学函数:
就相当于内置函数,已经实现的一些方法,属于Math类。
Math.sin
Math.cos
Math.exp
Math.log
Math.log10
... ...
使用的时候先导入:
import static java.lang.Math.*
这样就省去了加上Math的麻烦。直接使用,sin,cos,tan等等。
原文地址:https://www.cnblogs.com/botoo/p/8478358.html
时间: 2024-10-07 10:12:00