Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: introduction

  1. #1
    Junior Member
    Join Date
    Dec 2012
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default introduction

    class
    {
    public static void main(String arg[])
    {
    System.out.print("Hi");
    }
    }


  2. #2
    Member vigneshwaran's Avatar
    Join Date
    Nov 2012
    Location
    Chennai, TamilNadu
    Posts
    35
    My Mood
    Cheerful
    Thanks
    7
    Thanked 1 Time in 1 Post

    Default Re: introduction

    package vigneshwaran.*;
    import java.io.*;
    public class Ashyi
    {
    String str="Hello Ashyi, You are great :P";
    public void printHelloToAshyi()
    {
    System.out.println(str);
    }
    public static void main(String args[])
    {
    Ashyi ash=new Ashyi();
    ash.printHelloToAshyi();
    }
    }

Similar Threads

  1. Introduction
    By pradipdas in forum Member Introductions
    Replies: 0
    Last Post: March 23rd, 2012, 05:15 AM
  2. Introduction
    By Seiko09 in forum Member Introductions
    Replies: 1
    Last Post: December 9th, 2011, 10:36 PM
  3. My introduction
    By LukeDavison in forum Member Introductions
    Replies: 1
    Last Post: November 25th, 2011, 11:47 AM
  4. My introduction
    By Jeffadkins51 in forum Member Introductions
    Replies: 1
    Last Post: November 15th, 2011, 10:10 AM
  5. Introduction
    By sapleshailesh in forum Member Introductions
    Replies: 1
    Last Post: November 11th, 2011, 08:05 AM