在网上看到java居然支持中文变量名、方法。这里我只试了变量名和方法,类名这些没有试...。真是给力
package com.gxf.fun; public class TestForChinese {
private String 字符串 = "字符串"; public void 输出方法(){
System.out.println("这是输出方法!");
} public static void main(String[] args) {
TestForChinese testForChinese = new TestForChinese();
System.out.println(testForChinese.字符串);
testForChinese.输出方法();
} }
输出
字符串
这是输出方法!