The Artima Developer Community
Sponsored Link

Java Buzz Forum
Java Tutorial : What is a Class[Person]?

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Ram N

Posts: 2777
Nickname: ramram
Registered: Jul, 2014

Ram N is Java Programmer
Java Tutorial : What is a Class[Person]? Posted: Aug 11, 2015 8:54 AM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by Ram N.
Original Post: Java Tutorial : What is a Class[Person]?
Feed Title: JAVA EE
Feed URL: http://ramj2ee.blogspot.com/feeds/posts/default?alt=rss
Feed Description: This blog has viedo tutorials and Sample codes related to below Technologies. 1.J2EE 2.Java 3.Spring 4.Hibernate 5.Database 6.Oracle 7.Mysql 8.Design Patterns
Latest Java Buzz Posts
Latest Java Buzz Posts by Ram N
Latest Posts From JAVA EE

Advertisement

Click here to watch in Youtube :
https://www.youtube.com/watch?v=vkDTYu-uOgI&list=UUhwKlOVR041tngjerWxVccw

Click the below Image to Enlarge
Java Tutorial : What is a Class[Person]? 

Person.java
/**
* Person class is the blueprint from which individual Person objects can be
* created.
*/

public class Person
{
/*
* Attributes/Properties/Characteristics.
*/

String name;
int age;
String sex;
String height;
String weight;

public void eat(String string)
{
System.out.println(string);
}

public void fight(String string)
{
System.out.println(string);
}

}
PersonDemo.java
public class PersonDemo
{
public static void main(String[] args)
{

Person jackieChan = new Person();
/*
* Setting Attributes/Properties/Characteristics.
*/

jackieChan.name = "Jackie Chan";
jackieChan.age =53;
jackieChan.sex = "Male";
jackieChan.height = "5’.9’'";
jackieChan.weight = "52 Kg";

System.out.println("Attributes");
System.out.println("--------------");

displayPersonInformation(jackieChan);

System.out.println("\nBehaviors");
System.out.println("----------");

jackieChan.eat("Can eat only Chinese food");
jackieChan.fight("Can do Martial art or Kung Fu Fight");

System.out.println("*********************************************");


Person angelinaJolie = new Person();
/*
* Setting Attributes/Properties/Characteristics.
*/

angelinaJolie.name = "Angelina Jolie";
angelinaJolie.age =45;
angelinaJolie.sex = "FeMale";
angelinaJolie.height = "6’.2’'";
angelinaJolie.weight = "45 Kg";

System.out.println("Attributes");
System.out.println("--------------");

displayPersonInformation(angelinaJolie);

System.out.println("\nBehaviors");
System.out.println("----------");

angelinaJolie.eat("Can eat only American food");
angelinaJolie.fight("Can do karate fight");

System.out.println("*********************************************");


}

public static void displayPersonInformation(Person person)
{
System.out.println("Name : "+ person.name);
System.out.println("Age : "+person.age);
System.out.println("sex : "+person.sex);
System.out.println("Height : "+person.height);
System.out.println("Weight : "+person.weight);
}
}

Output
Attributes
--------------
Name : Jackie Chan
Age : 53
sex : Male
Height : 5��.9'
Weight : 52 Kg

Behaviors
----------
Can eat only Chinese food
Can do Martial art or Kung Fu Fight
*********************************************
Attributes
--------------
Name : Angelina Jolie
Age : 45
sex : FeMale
Height : 6’.2’'

Weight : 45 Kg

Behaviors
----------
Can eat only American food
Can do karate fight
*********************************************

To Download DisplayAllHeadersApp Project Click the below link
https://sites.google.com/site/javaee4321/java/PersonDemoStateAndMethods.zip?attredirects=0&d=1

See also:
  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • Read: Java Tutorial : What is a Class[Person]?

    Topic: 040: Software is awesome - Software Defined Talk Previous Topic   Next Topic Topic: Getting Started with ELK Stack on WildFly

    Sponsored Links



    Google
      Web Artima.com   

    Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use