摘要:
const Pi = 3.141显示类型定义:const b string = “string”隐式类型定义:const b = “string” 没有指定类型的常量被使用时,会根据使用环境来推断其类型。var n intf(n + 5)//5就是那个没有指定类型的常量常量的值必须是在编译时期就能确 阅读全文
摘要:
//注解@Retention(RetentionPolicy.RUNTIME)@Target(ElementType.METHOD)public @interface test { public String print() default "99"; String value() ; int st 阅读全文