高贵含羞草

文章
5
资源
1
加入时间
2年10月17天

加拿大卡尔顿大学暑课两个月入门Java全记录_1Java Scanner 类

2020.7.7第一天,加拿大卡尔顿大学cs网课。今天学:basic property input and output operations Create simple programs in Java using the imperative/procedural paradigmnotes from lecture 1understand the syntax is important 用编译语言Compiled language写成的程序,在运行期的运行速度,通常比用解释型语

Java 反射获取值

getClass()Class clazz = object.getClass();获取此时object的类。getDeclaredFields() ,getFields()Field[] fields = clazz.getDeclaredFields()getDeclaredFields() 获得某个类的所有声明的字段,即包括public、private和protec...