interfaces

JAVA Catch the Eggs Game Programming part2

Submitted by moazkhan on

TUTORIAL NO 7

JAVA Catch the Eggs Game Programming part2 In this tutorial you will learn: 1.Game Programming 2.CardLayout 3.Changing screens in the game 4.Internal Classes 5.Swing Animations 6.Event handling 7.JAVA awt 8.JAVA swing 9.Adapters In this tutorial I will continue coding my previous tutorial and write the GamePanel class which we left empty in our previous tutorial.

Search Application in JAVA

Submitted by moazkhan on

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. interface In this tutorial we will be working in JAVA SWING.

Interfaces

Submitted by admin on

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.