interfaces
Search Application in JAVA
TUTORIAL NO 4
File Search using MultiThreading
In this tutorial you will learn: 1. Reading from a file 2. Multi Threading 3. Recursion 4. Event handling 5. Layout Manager 6. JAVA awt basics 7. JAVA swing basics 8. Adapters 9. Anonymous classes Today I am going to teach you how to make a file searching program. It can search any file and display it’s contents.
Interfaces
Definition:
In java programming language, an interface is an abstract, conceptual or concrete type that is used to specify an interface.
How to use an interface:
- By using the key word interface, we can fully abstract a class interface from its implementation.
It means that, using interface, we can specify what a class must do, but not how it does it.