About 50 results
Open links in new tab
  1. What is the difference between "instantiated" and "initialized"?

    Feb 25, 2010 · To instantiate means creating an object of some class, which initial state may be undefined. The class is a blueprint which is used by the program to create objects. Objects created …

  2. What is the exact meaning of instantiate in Java

    Jun 1, 2017 · Instantiate in Java means to call a constructor of a Class which creates an an instance or object, of the type of that Class. Instantiation allocates the initial memory for the object and returns a …

  3. how do instantiate GameObject as child of a selected object

    Jan 5, 2022 · public static Object Instantiate(Object original, Vector3 position, Quaternion rotation, Transform parent); If you would like to instantiate the prefab as a child of GameObject in world …

  4. How do I instantiate a class given its string name?

    How do I instantiate a class given its string name? Asked 16 years, 2 months ago Modified 7 years, 7 months ago Viewed 75k times

  5. godot - How can I dynamically instantiate nodes from a scene using a ...

    Apr 21, 2024 · How can I dynamically instantiate nodes from a scene using a constructor? Asked 1 year, 11 months ago Modified 1 year, 11 months ago Viewed 13k times

  6. c++ - What is the difference between initialize and instantiate a ...

    Apr 15, 2018 · 2 What is the difference between initialize and instantiate a variable? I have searched through questions, I have only seen initialize variables (assign an initial value to a variable) and …

  7. How to explicitly instantiate a template function efficiently?

    Mar 25, 2025 · 5 I need to instantiate it for many combinations of IndexType / DataType / EntityType. Is there an efficient way to do this? C++ doesn't provide a built-in mechanism to automatically generate …

  8. c# - How to instantiate a class? - Stack Overflow

    Apr 27, 2020 · I'm a beignner in C#, I want to create a new object in my main class, How do i go about it ? House.cs namespace Assignment { public class House { //the class containing properties of...

  9. How to instantiate an object in java? - Stack Overflow

    Aug 1, 2013 · I'm new in programming and I would like to know where did I go wrong in instantiating an object. Below is the code: public class Testing{ private int Sample(int c) { int a = 1; ...

  10. Use DI to instantiate a service with a dynamic parameter?

    Nov 26, 2023 · Use DI to instantiate a service with a dynamic parameter? Asked 2 years, 4 months ago Modified 2 years, 4 months ago Viewed 573 times