java中冒号运算符起什么作用呢?

java-教程王 Java教程 发布时间:2022-03-19 15:53:06 阅读数:12107 1 运算符
下文笔者讲述java中冒号运算符的功能简介说明,如下所示:
冒号运算符的功能:
    1.跳转
	2.三元表达式
	3.迭代循环
	4.断言
	5.switch
	6.方法(jdk8)
1 跳出标签
label: for (int i = 0; i < x; i++) {
    for (int j = 0; j < i; j++) {
        //业务代码
    }
}  

2 三元条件
int a = (b < 4)? 7: 8; // if b < 4, set a to 7, else set a to 8

3 每个循环
String[] ss = {"hi", "there"}
for (String s: ss) {
    print(s);  
}

4 断言
int a = factorial(b);
assert a >= 0: "factorial may not be less than 0"; // throws an AssertionError with the message if the condition evaluates to false

5 switch
switch (type) {
    case WHITESPACE:
    case RETURN:
        break;
    case NUMBER:
        print("got number: " + value);
        break;
    default:
        print("syntax error");
}
6 方法参考
class User {
   public static int compareByAge(User a, User b) {
       return a.birthday.compareTo(b.birthday);
   }}
}

Arrays.sort(users, User::compareByAge);
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaCourse/202203/2493.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者