FAQ
Cover
\
Build
\
Source
\
Bugs
\
Reference
\
Libraries
\
Tools
The bugs database has moved
here
.
Bug 456 : default class constructor?
Last modified: 2007-05-07 21:46
P
roject:
processing
trash
Version:
unspecified
Co
m
ponent:
android
book
core
libraries
pde
reference
tools
web
Status:
RESOLVED
Resolution:
REMIND -
Pr
i
ority:
P2
Severity:
normal
Platform
All
O
S:
All
Windows
Mac OS
Linux
Other
Reporter:
fry
Assigned To:
REAS
Attachment
Type
Created
Size
Actions
Description
: Opened: 2006-11-22 09:20
do we ever mention in the book that
class Book {
int x, y;
}
actually has an empty default constructor:
class Book {
int x, y;
Book() {
}
}
this may or may not be important, though i had to explain to a student
where the constructor idea came from at all, since it was quite foreign
that it was an "optional" thing that could be added.