About 10,500,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. Proper way to initialize C++ structs - Stack Overflow

    Jan 21, 2017 · The new syntax with () should value-initialize the object, assuming it is POD. Is it possible that some subpart of your struct isn't actually POD and that's preventing the expected …

  3. How to initialize a struct in C# - Stack Overflow

    Oct 15, 2010 · How to initialize a struct in C# [duplicate] Asked 14 years, 8 months ago Modified 14 years, 8 months ago Viewed 49k times

  4. How to initialize a struct in accordance with C programming …

    Is this the way to declare and initialize a local variable of MY_TYPE in accordance with C programming language standards (C89, C90, C99, C11, etc.)? Or is there anything better or at …

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

    May 10, 2016 · How to initialize array to 0 in C? Asked 15 years, 2 months ago Modified 3 years, 7 months ago Viewed 526k times

  6. Java: define terms initialization, declaration and assignment

    assignment: throwing away the old value of a variable and replacing it with a new one initialization: it's a special kind of assignment: the first. Before initialization objects have null …

  7. c - Initializing array of structures - Stack Overflow

    Sep 20, 2013 · It's a designated initializer, introduced with the C99 standard; it allows you to initialize specific members of a struct or union object by name. my_data is obviously a typedef …

  8. c - Initializing a struct to 0 - Stack Overflow

    Jun 22, 2012 · If I have a struct like this: typedef struct { unsigned char c1; unsigned char c2; } myStruct; What would be the easiest way to initialize this struct to 0? Would the following suffice?

  9. Use curly braces to initialize a Set in Python - Stack Overflow

    Use curly braces to initialize a Set in Python Asked 11 years, 11 months ago Modified 1 month ago Viewed 189k times

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

    How to directly initialize a HashMap (in a literal way)? Asked 13 years, 11 months ago Modified 3 months ago Viewed 2.1m times