how to call one program .class file in another program
Answers were Sorted based on User's Feedback
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 |
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 |
Answer / amit
by making package we can include one call in other program
Is This Answer Correct ? | 7 Yes | 1 No |
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 |
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 |
Answer / rakesh
one answer in now proceeding after another file also use
the program
Is This Answer Correct ? | 0 Yes | 0 No |
Which class is used by server applications to obtain a port and listen for client requests?
What is immutable in java?
why the wait,notify,notifyall methods are placed in object class?these are the thread concepts why these methods are placed in Object class?
2 Answers Global Logic, Satyam,
Is nullpointerexception checked or unchecked?
What are the differences between abstract class and interface?
Who found java?
what are the design patterns in struts?
What are features of java?
What are the steps to do connection pooling in weblogic?
What exceptions occur during serialization?
abstract class A{ int list []=new int [100]; A(int x,int y){ rondom n=new rondom(); for (int i==;i<100;i++); list [i]=x+r.next int(y-x+1); abstract sort (); abstract binary sarch(int temp); class B extends A{
What methodology can be employed to locate substrings inside a string?