首页 > 其他 > 详细

标识符的学习

时间:2020-05-18 21:54:38      阅读:61      评论:0      收藏:0      [点我收藏+]

public class Demo01 {
    public static void main(String[] args) {
        String 王者荣耀 = "倔强青铜,你真是个辣鸡!";
        System.out.println(王者荣耀);

    //大小写十分敏感
  String Man = "任全球";
  String man = "任全球";
?
  String Ahello = "任全球";
  String ahello = "任全球";
  String $hello = "任全球";
  String _hello = "任全球";
  String _1 = "任全球";
  //String class = "任全球";
  //String 1hello = "任全球";
  //String #hello = "任全球";
?
}

}

标识符的学习

原文:https://www.cnblogs.com/renquanqiu/p/12912766.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!