homework(Java)
贰叁!
这个作者很懒,什么都没留下…
展开
-
了解java的反射机制
Java的反射(reflection)机制是指在程序的运行状态中,可以构造任意一个类的对象,可以了解任意一个对象所属的类,可以了解任意一个类的成员变量和方法,可以调用任意一个对象的属性和方法。这种动态获取程序信息以及动态调用对象的功能称为Java语言的反射机制。反射被视为动态语言的关键。 功能 Java反射机制主要提供了以下功能:在运行时判断任意一个对象所属的类;在运行时构造任意一个类的对象;在运行时判断任意一个类所具有的成员变量和方法;在运行时调用任意一...原创 2022-04-06 20:03:33 · 99 阅读 · 0 评论 -
课后作业第四章4(3)
package hk45;public class Tom { static int sum; int getSum(int ...item) { for (int n : item) { sum += n; } return sum; }}package hk45;public class E { public static void main(String[] args) { .原创 2022-03-31 21:44:59 · 638 阅读 · 0 评论 -
课后作业第四章4(2)
package hk45;public class B { int x=100,y=200; public void setX(int x){ x=x; } public void setY(int y){ this.y=y; } public int getXYSum(){ return x+y; }}package hk45;public class E { pub...原创 2022-03-31 21:37:36 · 1046 阅读 · 3 评论 -
课后作业第三章 第4题
public class kkb { public static void main(String[] args) { boolean boo=false; int x=-1; boo=((x=10)>9)||((x=100)>99); System.out.println(boo+"hello"+x); }}(2)public class kkb { public static void ma.原创 2022-03-28 21:55:10 · 955 阅读 · 1 评论 -
第三章第5题
1.编写一个应用程序,用for循环输出俄文的“字母表”public class kkb { public static void main(String[] args) { int startPosition = 0, endPosition = 0; char cStart = 'А', cEnd = 'Я'; startPosition = (int) cStart; endPosition = (int) cEnd; .原创 2022-03-26 22:34:56 · 754 阅读 · 0 评论 -
第二章课后作业第5题
5.编写一个应用程序,给出汉字“你”“我”“他”在Unicode表中的位置。package ll;public class Rect { public static void main(String args[]) { char ch1='你',ch2='我',ch3='他'; System.out.println("\""+ch1+"\"的位置:"+(int)ch1); System.out.println("\""+ch2+"\"的位置:"+(int)c...原创 2022-03-14 18:30:52 · 335 阅读 · 0 评论