954,554 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Help me in Java Questions

what is the future perspectives of Java

lokis
Newbie Poster
2 posts since Dec 2010
Reputation Points: 10
Solved Threads: 0
 

Java is an inanimate thing, it has no objective perspective on its future.

masijade
Industrious Poster
Moderator
4,253 posts since Feb 2006
Reputation Points: 1,471
Solved Threads: 494
 
class WoodFurn
{
    String type="teak";
    String finish="coarse";
    void showDet()
{   System.out.println("Instance of class "+this.getClass().getName());
    System.out.println("=====================================");

    System.out.println("type of wood-"+type);
    System.out.println("Finish is -"+finish);
    }
}
class WoodTable
{
    int legs=4;
    void show()
{

    System.out.println("legs  -"+legs);
}
public static void main(String args[])
{
    WoodTable t=new WoodTable( );
    t.show( );
    }
}
chawda123
Newbie Poster
1 post since May 2012
Reputation Points: 0
Solved Threads: 0
 

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: