About 121,000 results
Open links in new tab
  1. Constructors - C# | Microsoft Learn

    Mar 15, 2025 · A constructor in C# is called when a class or struct is created. Use constructors to set defaults, limit instantiation, and write flexible, easy-to-read code.

  2. Constructors in C++ - GeeksforGeeks

    Jan 17, 2026 · There are 4 types of constructors in C++: 1. Default Constructor. A default constructor is automatically created by the compiler if no constructor is defined. It takes no arguments and …

  3. Constructor (object-oriented programming) - Wikipedia

    In class-based, object-oriented programming, a constructor (abbreviation: ctor) is a special type of function called to create an object. It prepares the new object for use, often accepting arguments that …

  4. Java Constructors - W3Schools

    A constructor in Java is a special method that is used to initialize objects. The constructor is called when an object of a class is created. It can be used to set initial values for object attributes:

  5. Constructors and member initializer lists - cppreference.com

    Before the compound statement that forms the function body of the constructor begins executing, initialization of all direct bases, virtual bases, and non-static data members is finished.

  6. constructor - JavaScript | MDN - MDN Web Docs

    Jul 20, 2025 · The constructor method is a special method of a class for creating and initializing an object instance of that class.

  7. 14.9 — Introduction to constructors – Learn C++ - LearnCpp.com

    We must need a matching constructor. But what the heck is that? A constructor is a special member function that is automatically called after a non-aggregate class type object is created.

  8. What is Constructor? - GeeksforGeeks

    Jul 23, 2025 · A constructor is a special type of method used in object-oriented programming languages to initialize objects. The constructor is called automatically every time when an object is created, …

  9. C++ Constructors - W3Schools

    A constructor is a special method that is automatically called when an object of a class is created. To create a constructor, use the same name as the class, followed by parentheses ():

  10. Java Constructors - GeeksforGeeks

    Mar 26, 2026 · A constructor in Java is a special member that is called when an object is created. It initializes the new object’s state. It is used to set default or user-defined values for the object's …