Why is an Add method required for { } initialization?

前端 未结 9 2124
渐次进展
渐次进展 2021-02-10 18:54

To use initialization syntax like this:

var contacts = new ContactList
{
    { \"Dan\", \"dan.tao@email.com\" },
    { \"Eric\", \"ceo@google.com\" }
};
<         


        
相关标签:
9条回答
  • 2021-02-10 19:02

    It's because the initialization statement is shorthand for the CLR. When it gets compiled into bytecode, it will call the Add method you've defined.

    So you can make the case that this initialization statement is not really a "first class" feature, because it doesn't have a counterpart in IL. But that's the case for quite a lot of what we use, the "using" statement for example.

    0 讨论(0)
  • 2021-02-10 19:05

    As far as I understand it, the collection initializer syntax is just syntactic sugar with no special tricks in it. It was designed in part to support initializing collections inside Linq queries:

    from a in somewhere
    select new {
       Something = a.Something
       Collection = new List<object>() {
          a.Item1,
          a.Item2,
          ...
       }
    }
    

    Before there was no way to do this inline and you'd have to do it after the case, which was annoying.

    0 讨论(0)
  • 2021-02-10 19:07

    I'm sure I haven't put as much thought into this matter as the C# design team; it just seems that there could have been different rules for this syntax that would have meshed better with its typical usage scenarios.

    Your analysis is very good; the key problem is the last three words in the statement above. What are the actual typical usage scenarios?

    The by-design goal motivated by typical usage scenarios for collection initializers was to make initialization of existing collection types possible in an expression syntax so that collection initializers could be embedded in query comprehensions or converted to expression trees.

    Every other scenario was lower priority; the feature exists at all because it helps make LINQ work.

    The C# 3 compiler team was the "long pole" for that release of Visual Studio / .NET - we had the most days of work on the schedule of any team, which meant that every day we delayed, the product would be delayed. We wanted to ship a quality product on time for all of you guys, and the perfect is the enemy of the good. Yes, this feature is slightly clunky and doesn't do absolutely everything you might want it to, but it was more important to get it solid and tested for LINQ than to make it work for a bunch of immutable collection types that largely didn't even exist.

    Had this feature been designed into the language from day one, while the frameworks types were still evolving, I'm sure that things would have gone differently. As we've discussed elsewhere on this site, I would dearly love to have a write-once-read-many fixed size array of values. It would be nice to define a common pattern for proffering up a bunch of state to initialize an arbitrary immutable collection. You are right that the collection initializer syntax would be ideal for such a thing.

    Features like that are on the list for potential future hyptothetical language versions, but not real high on the list. In other words, let's get async/await right first before we think too hard about syntactic sugars for immutable collection initialization.

    0 讨论(0)
  • 2021-02-10 19:08

    What should the initialization syntax use, if not an Add method? The initialization syntax is 'run' after the constructor of the collection is run, and the collection fully created. There must be some way of adding items to the collection after it's been created.

    If you want to initialize a read-only collection, do it in the constructor (taking a T[] items argument or similar)

    0 讨论(0)
  • 2021-02-10 19:12

    The main reason is Syntactic Sugar.

    The initializer syntax only makes writing programing in C# a bit easier. It doesn't actually add any expressive power to the language.

    If the initializer didn't require an Add() method, then it would be a much different feature than it is now. Basically, it's just not how C# works. There is no literal form for creating general collections.

    0 讨论(0)
  • 2021-02-10 19:13

    Not an answer, strictly speaking, but if you want to know what sort of things influenced the design of collection initialisers then you'll probably find this interesting:

    • What is a collection? [straight from the Horse's mouth Mads Torgersen]
    0 讨论(0)
提交回复
热议问题