Search:

Type: Posts; User: vinothkumar

Search: Search took 0.22 seconds.

  1. Replies
    2
    Views
    827

    Now writing java code in this type

    class Example
    {
    static public void main(String arg[])
    {
    System.out.println("Welcome to java");
    }
    }
  2. Replies
    1
    Views
    728

    java frame window

    how one frame to another frame using button please help me
  3. Replies
    7
    Views
    1,029

    Re: Java Class Help Please!

    class Example//starting with capital letter is best
    {
    void display()
    {
    Outer o = new Outer();
    o.test();
    System.out.println("welcome to java");
    }
    class Outer
    {
Results 1 to 3 of 3