271.
                                Can a constructor be created with a private access modifier
                                
                                    View Description
                                    
                                        
                                    
                                
                                
                                    
                            
                        A private constructor is a special instance constructor. It is commonly used in classes that contain static members only. If a class has one or more private constructors and no public constructors, then other classes (except nested classes) are not allowed to create instances of this class.