Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 3 of 3

Thread: private constuctor

  1. #1
    Junior Member
    Join Date
    Feb 2013
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default private constuctor

    What is exact use of private constuctor?


  2. #2
    Crazy Cat Lady KevinWorkman's Avatar
    Join Date
    Oct 2010
    Location
    Washington, DC
    Posts
    5,424
    My Mood
    Hungover
    Thanks
    144
    Thanked 636 Times in 540 Posts

    Default Re: private constuctor

    What do you think it is? What does a private constructor mean?
    Useful links: How to Ask Questions the Smart Way | Use Code Tags | Java Tutorials
    Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!

  3. #3
    Member
    Join Date
    Feb 2013
    Location
    Canada
    Posts
    54
    Thanks
    0
    Thanked 6 Times in 6 Posts

    Default Re: private constuctor

    There are several uses for private constructors but the best way for you to understand them is to start by thinking about what public constructors can do. For example, public class A has a private field variable b (along with its getter) and a public constructor. Public class B imports A and tries to get the value of b through the getter. Suppose the constructor was changed to private. What happens when public class B tries to use the getter to get the value of b? If it helps to see the situation in code:

     
    public class A {
     
         private int b;
     
         public A () {
             this.b = b;
         }
     
         public A(int d) {
             this.b = d;
         }
     
         public int getB() {
             return b;
         }
    }
     
    import blah.blah.A;
     
    public class B {
     
         public static void main (String[] args) {
     
             A _a = new A();
     
             int c = _a.getB();
          }
    }

Similar Threads

  1. Runescape Private Server
    By Machonachos3 in forum What's Wrong With My Code?
    Replies: 2
    Last Post: January 4th, 2013, 09:15 PM
  2. private static variables
    By tcstcs in forum Java Theory & Questions
    Replies: 4
    Last Post: June 28th, 2012, 01:00 AM
  3. Accessability/Visability Private
    By EmSaint in forum Object Oriented Programming
    Replies: 1
    Last Post: March 15th, 2010, 06:50 PM
  4. Private Constructor
    By Ganezan in forum Object Oriented Programming
    Replies: 4
    Last Post: November 7th, 2009, 04:02 PM