Using Constructors : Constructor « Class Definition « Java Tutorial

Java Tutorial
1. Language
2. Data Type
3. Operators
4. Statement Control
5. Class Definition
6. Development
7. Reflection
8. Regular Expressions
9. Collections
10. Thread
11. File
12. Generics
13. I18N
14. Swing
15. Swing Event
16. 2D Graphics
17. SWT
18. SWT 2D Graphics
19. Network
20. Database
21. JSP
22. JSTL
23. Servlet
24. Web Services SOA
25. Email
26. J2ME
27. J2EE Application
28. XML
29. Design Pattern
30. Log
31. Security
32. Apache Common
Java
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Tutorial » Class Definition » Constructor 
5. 2. 1. Using Constructors
  1. Every class must have at least one constructor.
  2. If there is no constructors for your class, the compiler will supply a default constructor(no-arg constructor).
  3. A constructor is used to construct an object.
  4. A constructor looks like a method and is sometimes called a constructor method.
  5. A constructor never returns a value
  6. A constructor always has the same name as the class.
  7. A constructor may have zero argument, in which case it is called a no-argument (or no-arg, for short) constructor.
  8. Constructor arguments can be used to initialize the fields in the object.

The syntax for a constructor is as follows.

constructorName (listOfArguments) {
    [constructor body]
}
public class MainClass {
  double radius;

  // Class constructor
  MainClass(double theRadius) {
    radius = theRadius;
  }
}
5. 2. Constructor
5. 2. 1. Using Constructors
5. 2. 2. The Default Constructor
5. 2. 3. Multiple Constructors
5. 2. 4. Calling a Constructor From a Constructor
5. 2. 5. Duplicating Objects using a Constructor
5. 2. 6. Order of constructor calls
ww_w_._ja_v_a__2s__.__co___m__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.