Mapping of class file in Main

Hi All, i have written my class file and main class separately, so how to call the class file from main which is written separately.If possible provide quick response!
[188 byte] By [MIT126a] at [2007-11-27 9:51:17]
# 1
> ...> If possible provide quick response!Why not ask your question without that last sentence? No one here knows you and you don't pay for the service of people answering you here, so why are you rushing volunteers?
prometheuzza at 2007-7-13 0:20:23 > top of Java-index,Java Essentials,Java Programming...
# 2
Hi All,i have written my class file and main class separately, so how to call the class file from main which is written separately.Its okkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk.....Thanx for ur reply.
MIT126a at 2007-7-13 0:20:23 > top of Java-index,Java Essentials,Java Programming...
# 3

> i have written my class file and main class

> separately, so how to call the class file from main

> which is written separately.

By instantiating it in the your main-method.

Example:

// inside main(...)

ClassFile anInstanceOfClassFile = new ClassFile();

// ...

prometheuzza at 2007-7-13 0:20:23 > top of Java-index,Java Essentials,Java Programming...