Ask Question
15 May, 03:29

Which of the following statements is false? a. Another common use of private constructors is to force client code to use so-called "factory methods" to create objects. b. A factory method is a public static method that creates and initializes an object of a specified type (possibly of the same class), then returns a reference to it. c. One common use of a private constructor is sharing initialization code among a class's other constructors. d. You cannot prevent client code from creating objects of a class.

+5
Answers (1)
  1. 15 May, 06:34
    0
    Option D is false

    Explanation:

    You can prevent client codes from creating objects of a class by providing a single private constructor that consists entirely of static fields and methods for example

    public class Validation

    {private Validation () {} / / prevents instances / / static methods and fields go here}
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Which of the following statements is false? a. Another common use of private constructors is to force client code to use so-called "factory ...” in 📘 Business if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers