What must I choose author or Author after this.
? Other questions what means the icons beside those options one has a "spanner" and the other has two icons something like a long block more other Little that I don't identify what is that Little and what mean those icons? And if I want to use a second constructor in the same class that is a constructor without arguments is ok to make the constructor like the code after the image?
Other question in the next code Is ok the following constructor without arguments? or can be made that way or is something absurd to do that assignment? if I don't want specific default value would be better to set this.author = null;
or this.author = "";
or what must be done?
public Book()
{
this.author = Author;
this.title = Title;
}