This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
// 声明该类所属的包(这里包名为com.controller)
package com.controller;
// 定义一个公共类hello
public class hello {
// 主方法,程序执行的入口点
public static void main(String[] args) {
// 声明一个整数类型的变量a(未初始化)
int a;
}