aspose file tools
The moose likes Java in General and the fly likes constructor with private access modifier Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "constructor with private access modifier" Watch "constructor with private access modifier" New topic
Author

constructor with private access modifier

Abhishek Reddy
Ranch Hand

Joined: Mar 28, 2006
Posts: 259
A private constructor means only code within the class itself can instantiate an object of that type, so if the private-constructor class wants to allow an instance of the class to be used, the class must provide a static method or variable that allows access to an instance created from within the class.

I didnot uderstand this point :If the private-constructor class wants to allow an instance of the class to be used, the class must provide a static method or variable that allows access to an instance created from within the class.

Please make me understand this point
Thanks in advance


Abhishek
Jesper de Jong
Java Cowboy
Bartender

Joined: Aug 16, 2005
Posts: 12929
    
    3

It's just a plain and clear English sentence, but your native language probably isn't English. I'll try to explain it with code.

An example of where this technique is useful is in the implementation in Java of the singleton design pattern.
[ August 17, 2006: Message edited by: Jesper Young ]

Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: constructor with private access modifier
 
Similar Threads
Invoking Private Constructor
Constructor Rules
private constructor
constructors
Is it possible for a class to have a private constuctor???