英文: Is there a way of making optional atributes in java? 问题 我需要在Java中编写这个类。我考虑过创建一堆构造函数,但我不认为那是最好的方法...
如何将这两个类连接起来,以展示Person和Address之间的一对多关系。
英文: How would I link the two classes together to show the one to many relationship between Person an...
为什么Java将我的第二个实例的参数分配给了该类的两个实例?
英文: Why is Java assigning the parameters of my second instance to both instances of a class? 问题 这是我的...
多类布尔值
英文: Boolean with multiple classes 问题 我正试图进行一个包含三个类的程序,并传递一个布尔值来预订一个房间。我有驱动程序、建筑物和房间程序。我将预订设置为false,但...
在调用构造函数时遇到问题,如果Java类在不同的路径中。
英文: Problem at calling a constructor if the java class is in a different path 问题 以下是翻译好的内容: 我想将 Java...
用 Class.forName 和数组类型参数初始化一个类。
英文: Initialize A Class by Class.forName with Array type parameters 问题 我有一个带有构造函数的类,我需要通过名称进行初始化。 pub...
在Java中的类型转换 – (Parent) this 代表什么?
英文: Casting in Java - what does (Parent) this mean? 问题 class A { public int a = 100; } class B exten...
关于嵌套类中的抽象类的问题。
英文: Question about Abstract Classes when classes are nested 问题 如果ClassB被声明为abstract因为它包含抽象方法,那么Class...
根据用户从扫描文件中输入的内容如何显示信息。
英文: How to display message based on user input from scanned file 问题 我有一个类,根据用户输入的价格创建一个文本文件,并放入时间戳,然...
改变 webView 的可见性从另一个类
英文: Change webView visibility from another class 问题 以下是您要翻译的内容: 因此,我的主类中有一个 webview 元素,我想将其可见性更改为隐藏,...
37