|
- public class test{
- 变量定义。
- public test(int arg1, float arg2) throws IOException {
- this(arg1, true, 0, false);
- }
- public test(int arg1, boolean arg2, int arg3) throws IOException {
- this(arg1, arg2, 0, false);
- }
- public test(int arg1, boolean arg2, boolean arg4) throws IOException {
- this(arg1, arg2, 0, arg4);
- }
- public test(int arg1, boolean arg2, int arg3, boolean arg4) throws IOException {
- 具体实现。
- }
-
复制代码
这个在java,称呼为什么?如果这个定义在一个文件里边,编译为class后,如何在另外一个java程序里边调用,语法是什么样,找不到具体的参考书例子,谢谢。 |
|