Lecture 02 OOP - Classes - Concepts
Lecture 02 OOP - Classes - Concepts
Class
Inheritance
Polymorphism
Abstraction
Encapsulation
Lamp On Turn on
Off Turn off
Objects of
Bicycle Class
object instantiation
Professor: Lynn Robert Carter Instructor: Dao, Nguyen Thi Anh
Duy Tan University
14
Some other Scanner construtors
Sr.No. Constructor & Description
1 Scanner(File source)
This constructs a new Scanner that produces values scanned from the specified file.
2 Scanner(File source, String charsetName)
This constructs a new Scanner that produces values scanned from the specified file.
3 Scanner(InputStream source)
This constructs a new Scanner that produces values scanned from the specified input
stream.
4 Scanner(InputStream source, String charsetName)
This constructs a new Scanner that produces values scanned from the specified input
stream.
5 Scanner(Readable source)
This constructs a new Scanner that produces values scanned from the specified source.
6 Scanner(ReadableByteChannel source)
This constructs a new Scanner that produces values scanned from the specified channel.
8 Scanner(String source)
This constructs a new Scanner that produces values scanned from the specified string.