Lecture 6
17
Constructor declaration
•
access className(parameters)
•
{
•
// body - what to do when new one is built
•
}
–
37
public TextFile( String owner,
–
String contents)
–
{…
–
}