Go Back   Site Owners Forums - Webmaster Forums > Web Programming > Programming General > Java

Notices


Reply
 
Thread Tools Rate Thread Display Modes
Old 08-28-2014, 04:22 AM   #1
ThedorisJackson
Registered User
 
Join Date: Jun 2014
Location: San Antonio
Posts: 67
What is class?

What is class?
ThedorisJackson is offline   Reply With Quote

Old 09-01-2014, 02:19 AM   #2
johnstyle
Registered User
 
Join Date: Dec 2013
Posts: 327
Class is a blueprint that defines functions and variables. They do not take space in memory. Objects are used to define individuals or things of the same kind.
johnstyle is offline   Reply With Quote
Old 09-17-2014, 04:00 AM   #3
PatriciaEllis
Registered User
 
Join Date: Jul 2014
Location: Singapore
Posts: 82
Class is a Keyword . Class is the blueprint from which individual objects are created.
In the real world, you'll often find many individual objects all of the same kind. There may be thousands of other bicycles in existence, all of the same make and model. Each bicycle was built from the same set of blueprints and therefore contains the same components.
PatriciaEllis is offline   Reply With Quote
Old 09-23-2014, 04:15 AM   #4
yugant
Registered User
 
Join Date: Sep 2014
Posts: 228
A class is used to specify the form of an object and it combines data representation and methods for manipulating that data into one neat package.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
yugant is offline   Reply With Quote
Old 09-24-2014, 11:42 PM   #5
jameskamroon1
Registered User
 
Join Date: Sep 2014
Location: CALIFORNIA
Posts: 27
Class is a keyword. A class is nothing but a blueprint or a template for creating different objects which defines its properties and behaviors
jameskamroon1 is offline   Reply With Quote
Old 10-09-2014, 11:17 PM   #6
softech
Registered User
 
Join Date: Oct 2014
Posts: 1,401
Class is a Keyword . Class is the blueprint from which individual objects are created.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
softech is offline   Reply With Quote
Old 10-19-2014, 10:44 PM   #7
MichaelParker
Registered User
 
Join Date: Jun 2014
Posts: 31
A class is a template definition of the method s and variable s in a particular kind of object. Thus, an object is a specific instance of a class; it contains real values instead of variables.
MichaelParker is offline   Reply With Quote
Old 10-29-2014, 02:28 AM   #8
BenWood
Registered User
 
Join Date: Nov 2013
Location: United Kingdom
Posts: 201
A class is used to specify the form of an object and it combines data representation and methods for manipulating that data into one neat package. The data and functions within a class are called members of the class.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
BenWood is offline   Reply With Quote
Old 06-02-2015, 09:14 AM   #9
BenjaminMayer
Registered User
 
Join Date: Jun 2015
Location: canada
Posts: 29
A class is a blueprint from which individual objects are created.Java is an object oriented language and it support Object oriented feature. Class is a template that describe the state and behavior that object of its type support.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
BenjaminMayer is offline   Reply With Quote
Old 08-25-2015, 11:04 PM   #10
Martinricky
Registered User
 
Join Date: Aug 2015
Posts: 434
A class is nothing but a blueprint or a template for creating different objects which defines its properties and behaviors. Java class objects exhibit the properties and behaviors defined by its class. A class can contain fields and methods to describe the behavior of an object.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Martinricky is offline   Reply With Quote
Old 09-29-2015, 09:52 AM   #11
David Khan
Registered User
 
Join Date: Sep 2015
Posts: 8
A class is used to specify the form of an object
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
David Khan is offline   Reply With Quote
Old 11-05-2015, 01:48 AM   #12
seoyong
Registered User
 
Join Date: Nov 2015
Posts: 29
Class represents an object with a set of functions that can be called. For example, if you would like to model a robot object, you will typically create a robot class with a number of functions for example start, stop, move right, move left, etc.
seoyong is offline   Reply With Quote
Old 06-06-2016, 10:27 PM   #13
SaraSanjay
Registered User
 
Join Date: May 2016
Posts: 551
Java class objects exhibit the properties and behaviors defined by its class. A class can contain fields and methods to describe the behavior of an object.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
SaraSanjay is offline   Reply With Quote
Old 06-13-2016, 06:56 AM   #14
Paavni
Registered User
 
Join Date: Jun 2016
Posts: 15
A class is used in object-oriented programming to describe one or more objects. It serves as a template for creating, or instantiating, specific objects within a program.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Paavni is offline   Reply With Quote
Old 06-20-2016, 12:20 AM   #15
Harleyzoey
Registered User
 
Join Date: Jun 2016
Posts: 373
Set of objects is called as class in java.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Harleyzoey is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Have you ever wondered what is inside a java class file? cianfie Java 6 01-28-2015 11:09 PM


All times are GMT -7. The time now is 04:05 AM.


Powered by vBulletin Copyright © 2020 vBulletin Solutions, Inc.