• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

how to complie/run a java prog with 2 or more classes

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have 2 classes and iam using eclipse software.Now my public static void main function is in "class test" and another class exists say "class abcd".
now i have named the file as "test.java".
when i run it says tat no main function found..
what do i do and how to run a program like this.... and what to name the file as...



//package abcd;
import java.io.*;
import java.lang.*;

class abcd{
int size;
String breed;
String name;

void bark(){
System.out.println("bhow!bhow! "+size+" "+breed+" "+name);
}
}


public class test{
public void main(String[] args) {
abcd d= new abcd();
d.size = 10;
d. breed= "doberman";
d.name= "snoopy";
System.out.println("end of program");
}

}
 
Ranch Hand
Posts: 241
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It must be public static void main(String [] args)

You missed "static"
 
Sheriff
Posts: 14691
16
Eclipse IDE VI Editor Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The main() function must be static :
static public void main(String[] args)
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic