About 12,100,000 results
Open links in new tab
  1. What is the difference between "instantiated" and "initialized"?

    To initialize means assigning an initial state to the object before it is used. This initialization can be part of the instantiation process, in that case values are explicitly assigned to object attributes …

  2. How to directly initialize a HashMap (in a literal way)?

    How to directly initialize a HashMap (in a literal way)? Asked 14 years ago Modified 1 month ago Viewed 2.1m times

  3. Proper way to initialize C++ structs - Stack Overflow

    Jan 21, 2017 · should initialize all the values to zero, as does: myStruct = new MyStruct(); However, when the struct is initialized in the second way, Valgrind later complains "conditional …

  4. mcp server always get initialization error - Stack Overflow

    Apr 2, 2025 · I create a mcp server by FastMCP, I can ensure that the mcp server has already finished the initialization, due to the server has already process several tool request, but I also …

  5. How to initialize array to 0 in C? - Stack Overflow

    How to initialize array to 0 in C? Asked 15 years, 4 months ago Modified 3 years, 9 months ago Viewed 528k times

  6. c++ - A value of type "const char*" cannot be used to initialize an ...

    Feb 13, 2018 · A const pointer to non-const char would be a char* const, and you can initialize a char* from that all day if you want. You can, if you really want, achieve this with …

  7. How can I initialize all members of an array to the same value?

    How would you use memset to initialize a int array to some value larger than 255? memset only works if the array is byte sized.

  8. c# - How to initialize a list of strings (List<string>) with many ...

    Sep 23, 2019 · How to initialize a list of strings (List<string>) with many string values Asked 15 years, 1 month ago Modified 5 months ago Viewed 1.3m times

  9. When to use the brace-enclosed initializer? - Stack Overflow

    Apr 2, 2012 · Should the two equivalent constructors be called differently?" Say I run into the most-vexing parse; that can happen on any constructor for any instance. It's much easier to …

  10. How do you initialize an array in C#? - Stack Overflow

    Aug 6, 2009 · How do you initialize an array in C#? Asked 16 years ago Modified 1 year, 4 months ago Viewed 83k times