如何在java、android中使用构造函数?
How to use constructors in java, android?
我对来自
的以下代码有一个简短的问题
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;
}
// ...
}
** 它应该使用哪个构造函数?只有它的参数量?
**
是的,例如如果你打电话给
Tag newTag = new Tag();
它将调用
public Tag() {
}
但是如果你打电话给
Tag newTag = new Tag("Name");
它将调用
public Tag(String tag_name) {
}
等等
通过传递给构造函数的参数数量,它会知道调用哪个参数
是的,只是参数的数量。
调用函数"overloading"。您可以通过提供具有不同参数(根据它们的类型和顺序)的相同签名来重载函数。
然后 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!
编译器通过规则知道 "which constructor it shall use",在 Java Language Specification.
一份简历:
是通过方法的签名(参数的类型和顺序---异常不影响签名, return 类型也是如此)。这不仅受构造函数限制,任何方法都可以,适当重载;您可以按 "Overloading" 的主题学习这些内容。重载方法 --- 或构造函数 --- 的原因是为了提供更大的灵活性。
我对来自
的以下代码有一个简短的问题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;
}
// ...
}
** 它应该使用哪个构造函数?只有它的参数量? ** 是的,例如如果你打电话给
Tag newTag = new Tag();
它将调用
public Tag() {
}
但是如果你打电话给
Tag newTag = new Tag("Name");
它将调用
public Tag(String tag_name) {
}
等等
通过传递给构造函数的参数数量,它会知道调用哪个参数
是的,只是参数的数量。
调用函数"overloading"。您可以通过提供具有不同参数(根据它们的类型和顺序)的相同签名来重载函数。
然后 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!
编译器通过规则知道 "which constructor it shall use",在 Java Language Specification.
一份简历: 是通过方法的签名(参数的类型和顺序---异常不影响签名, return 类型也是如此)。这不仅受构造函数限制,任何方法都可以,适当重载;您可以按 "Overloading" 的主题学习这些内容。重载方法 --- 或构造函数 --- 的原因是为了提供更大的灵活性。