- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我知道 super() 是用来从父类中检索实例变量的,但是当我看到代码如下时:
public class novel extends literature {
private String title;
private String writer;
public novel(String title)
{
super("novel");
this.title = title;
this.writer = "Unknow";
}
public novel(String title, String writer)
{
super("novel");
this.title = title;
this.writer = writer;
}
public String getInfo()
{
return getGenre() + "\nTitle: " + title + "\nWriter: " + writer;
}
public static void main(String[] args)
{
novel n = new novel("The devil wears prada", "Lauren Weisberger");
System.out.println(n.getInfo());
}
}
当我看到这个时: super("novel");我很困惑,为什么子类名可以放在 super 方法中?我不知道为什么 this.writer = "unknown";
在这里是为了什么?为什么不直接将其设置为作家?
很抱歉向你们提出了这么多问题,但非常感谢您提供任何解决方案。
对不起,大家我仍然不完全明白为什么它使用 super (“小说”)?如果我们说小说这里是一个字符串,那么为什么我们使用与“小说类”同名的字符串呢?
最佳答案
super ("novel")
表示您将 String 作为参数传递给父类的构造函数。 this.writer = "Unknow"
表示将字符串值 "Unknow"
传递给当前类实例的成员。你也可以通过例如。 “Mark Twain”,作者的变量值将是“Mark Twain”。
了解更多信息http://docs.oracle.com/javase/tutorial/java/IandI/subclasses.html
//Parentclass
public class Book {
private String genre;
private String isbn;
//As you can see we have two constructors.
//The first with only one argument
public Book (String genre)
this.genre = genre;
}
//The second one with two arguments
public Book (String genre, String isbn) {
this.genre = genre;
this.isbn = isbn;
}
}
//subclass
class Novel extends Book{
public Novel(String isbn)
super("novel", isbn);
//super() has now two arguments, because we are calling the second constructor
//which has two args.
//Now, in the parent class members genre = "novel" and isbn equals the value passed in the
//child constructor.
//This is the same as using the parent constructor inner body in this constructor.
//Normally the parent constructor gets overwritten on inheritance.
//But super makes its possible to use the parent constructor.
}
关于java - 我对 super() 的用法感到困惑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25808094/
最近我在用 RestSharp消耗我的 Restful 资源。并期望在服务器和客户端之间与 JSon 交换数据。下面是我的 C# 代码。 var client = new RestSharp.Rest
我正在阅读 Bartosz Milewski 的一篇文章,其中他定义了以下函数: instance Applicative Chan where pure x = Chan (repeat x)
‘…' 其实是go的一种语法糖。 它的第一个用法主要是用于函数有多个不定参数的情况,可以接受多个不确定数量的参数。 第二个用法是slice可以被打散进行传递。 实例:
前言 在算face_track_id map有感: 开始验证 data={"state":[1,1,2,2,1,2,2,2],"pop":[&quo
本文实例讲述了php访问数组最后一个元素的函数end()用法。分享给大家供大家参考。具体分析如下: end()函数在PHP中用于检索数组中的最后一个元素。end()函数需要一个数组作为其唯一参数,
我使用的是 jdk1.8.0_92。我的虚拟机如下所示。 $java -version java version "1.8.0_92" Java(TM) SE Runtime Environment
我的情况是我需要将所有匹配 http://mywebsite.com/portfolio/[anyname] 的请求定向到 http://mywebsite.com/portfolio.php?用户名
我正在尝试在 NLTK 中使用语音标记并使用了以下命令: >>> text = nltk.word_tokenize("And now for something completely differe
#include typedef QList IntList; qRegisterMetaType("IntList"); error C2909: 'qRegisterMetaType':
来自 here我知道 BN_CTX 是一个保存 BIGNUM 临时变量的结构。这些 BIGNUM 变量什么时候会进入 BN_CTX 的 BN_POOL?如果我有一个 bignum_ctx BN_CTX
尝试为 ABPersonRef 创建对象例子:ABpersonRef 引用; 已包含Addressbook和AddressBookUI框架即使这样,当我编译时,它仍显示“ABPersonRef”未声明
我无法使用 GetAltTabInfo。可能是一个愚蠢的错误,但这有什么问题呢? HWND taskSwitcher = FindWindow(L"TaskSwitcherWnd", L"Task S
JSLint4Java 是 JSLint 的 Java 包装器。我需要这样的东西在我的 GWT 项目中使用,但使用 JSLint4Java 的唯一方法似乎是从命令行或通过 ANT 任务。有谁知道是否有
我有一个持久化实体对象的方法 persistData() 。我有另一个方法 findData() ,它对同一实体类执行 find() 操作以获取持久的主键值。当我在实体类的@PostPersist中调
下面是我的代码。请查看。 1. bool isUnavailable = db.Deploys.Where(p => p.HostEnvironmentId == Guid.Parse(h
这个问题已经有答案了: Why can't a Generic Type Parameter have a lower bound in Java? (6 个回答) 已关闭 9 年前。 我试图理解为什
我正在尝试使用 scala 编译器 Y 警告,但我认为我做得不对。在下面的示例中,nums 未使用,因此我希望 -Ywarn-value-discard 打印一个警告。有两个 if 条件,一个嵌套在另
用户被要求从某个给定的集合中选择一个 ID。我检查该 ID 是否存在于我的集合中,如果不存在,我会抛出 IndexOutOfBoundsException 并稍后捕获它。我实际上可以使用该异常来达到这
我正在尝试减少从 OSM 路径数据生成的形状文件。我正在使用 VTS 的 DouglasPeuckerSimplifier 实现。我想为特定 GTFS(通用交通提要规范)构建路线图的 geojson。
我明白了?!是排除某个模式,例如 a(?!b) 表示如果“a”后面没有“b”,它将匹配“a”。我的问题是,假设我有一个包含以下内容的文件: a cat is a cat, a dog is a dog
我是一名优秀的程序员,十分优秀!