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

Explain java coding standards for methods?

0 Answers  


Can we synchronize static methods in java?

0 Answers  


Need 2+ yrs experienced java techinical question papaer for company Iflex

1 Answers   TCS,


How do you add an arraylist to an array in java?

0 Answers  


What does system out println () do?

0 Answers  






Name few "optional" classes introduced with java 8 ?

0 Answers  


What is a default method?

0 Answers  


Why multiple inheritance is not supported by java?

0 Answers  


What is the purpose of the strictfp keyword?

0 Answers  


What is a subsequence of a string?

0 Answers  


What is port number in java?

0 Answers  


What is java util?

0 Answers  


Categories