1 Star 2 Fork 28

一叶知丘/JAVA 基础课程

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
Demo2.java 410 Bytes
Copy Edit Raw Blame History
一叶知丘 authored 2021-11-23 00:13 +08:00 . 初稿
/*
* 标识符,理解成一个名字
* 用来标识:类名,方法名,变量名,数组名,文件名等
* 命名规范:由字母、数字、_、$ 组成,
* 不能以数字开头,
* 不能是JAVA中的关键字
* 要见名知义
*/
public class Demo2 {
int 1name;
int $name;
int name;
int book_name;
int _name;
int n%aa;
int false;
int abc;
int a;
int continue;
int public;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/onesheet/java-basic-course.git
git@gitee.com:onesheet/java-basic-course.git
onesheet
java-basic-course
JAVA 基础课程
master

Search