gpt4 book ai didi

java - 如何在java、android中使用构造函数?

转载 作者:行者123 更新时间:2023-12-01 17:00:41 24 4
gpt4 key购买 nike

我对以下代码有一个简短的问题

http://www.androidhive.info/2013/09/android-sqlite-database-with-multiple-tables/

这里使用了两个构造函数,一个带有 id,另一个没有 - 我不明白为什么。有什么好处?

我已经读过这个帖子:

Why does this class have two constructors?

我能理解的答案是,我可以创建一个带有 id 的标签,但我试图理解,如何知道它应该使用哪个构造函数?仅仅通过参数的数量吗?

    public class Tag {

int id;
String tag_name;

// constructors
public Tag() {

}

public Tag(String tag_name) {
this.tag_name = tag_name;
}

public Tag(int id, String tag_name) {
this.id = id;
this.tag_name = tag_name;
}

// ...
}

最佳答案

是的,仅取决于其参数数量。

这称为函数“重载”。您可以通过提供具有不同参数的相同签名(根据它们的类型和顺序)来重载函数。

JVM 将决定在特定情况下使用哪种方法。

请注意:如果您提供构造函数,JVM 将不再提供默认构造函数。

class Foo{

private int x;
private String name;

Foo(int x){ //constructor 1
this(x, "Default Name");
}
Foo(String name){ //constructor 2
this(0, name);
}
Foo(int x, String name){ //constructor 3
this.x = x;
this.name = name;
}
}

Foo f1 = new Foo(9); //calls constructor 1, who will call constructor 3
//f1.x = 9, f1.name = "Default Name"
Foo f2 = new Foo("Test"); // calls constructor 2, who will call constructor 3
// f2.x = 0; f2.name = "Test"
Foo f3 = new Foo(3, "John"); //calls constructor 3
// f3.x = 3; f3.name = "John"

Foo f4 = new Foo() // This won't work! No default Constructor provided!

关于java - 如何在java、android中使用构造函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27849463/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com