美文网首页
Intellij IDEA 快捷语法

Intellij IDEA 快捷语法

作者: changhr2013 | 来源:发表于2018-04-01 22:41 被阅读0次

    模板语法

    1. main 函数快捷键
    psvm
    或
    main
    
    1. System.out.println();
    sout
    
    1. System.out.println("arg = " + arg));
    soutp
    
    1. for 循环
    fori
    
    1. List 转数组
    toar
    
    1. 创建 Callable
    C
    

    后缀表达式

    1. 为变量套上大括号
    .par
    
    1. 强制类型转换
    .cast
    
    1. 循环
    # 基本循环
    .fori
    
    # 增强 for 循环
    .for
    
    # 倒序 for 循环
    .forr
    
    1. if 判断 null
    # 相当于 if(arg == null)
    .null
    
    # 相当于 if(arg != null)
    .nn
    或
    .notnull
    
    1. 为数组创建流
    # 相当于 Arrays.stream(array)
    .stream
    
    1. 创建 try-with-resources 语句块
    .twr
    

    相关文章

      网友评论

          本文标题:Intellij IDEA 快捷语法

          本文链接:https://www.haomeiwen.com/subject/mfczcftx.html