how to call one program .class file in another program

Answers were Sorted based on User's Feedback



how to call one program .class file in another program..

Answer / surender

By creating instance of the .class file we can call it from any other program

Is This Answer Correct ?    27 Yes 2 No

how to call one program .class file in another program..

Answer / divya

By creating instance of the .class file we can call it from
any other program.

Is This Answer Correct ?    16 Yes 2 No

how to call one program .class file in another program..

Answer / amit

by making package we can include one call in other program

Is This Answer Correct ?    7 Yes 1 No

how to call one program .class file in another program..

Answer / sudarshan kumar

public class Hello{
int a=5;
void sum(){
int s=a+10;
System.out.print("\n sum :: "+s);
}
}

class Client{
public static void main(String x[]){
Hello h=new Hello()
h.sum();
}
}

Is This Answer Correct ?    4 Yes 1 No

how to call one program .class file in another program..

Answer / kajalpreet kaur

by making an object of .class file,we can use it in other program.

Is This Answer Correct ?    1 Yes 0 No

how to call one program .class file in another program..

Answer / jason

for the above class "Hello" ...
creating its '.class' file in another class is..

class DemoHello
{ p s v m(...)
{
Hello h=new Hello();
Class c=h.getClass();
sop(c);
}
}

=================
o/p:
class Hello

Is This Answer Correct ?    2 Yes 1 No

how to call one program .class file in another program..

Answer / rakesh

one answer in now proceeding after another file also use
the program

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

Why Set interface contains unique elements, what internally implemented for this so that it contains unique elements?

1 Answers   Rolta, TCS,


where do we use init()

2 Answers  


What is character in data type?

0 Answers  


Write java program to reverse string without using api?

0 Answers  


Why put method is idempotent?

0 Answers  






What’s the difference between constructors and other methods?

0 Answers  


Can a class have an interface?

0 Answers  


What is foreach loop in java?

0 Answers  


What is the difference between an array and an array list?

0 Answers  


Describe what happens when an object is created in java ?

0 Answers  


What are the 3 types of control structures?

0 Answers  


What is type parameter in java?

0 Answers  


Categories