First, you really have two variants of one thing:
T x = { 1, 2, 3 };
T x{1, 2, 3};
These two are really doing the same initialization with the exception that the first is invalid if it selects an explicit constructor. Otherwise they are identical. The first is called "copy list-initialization" and the second is "direct list-initialization".
The concept is that the form with the = is assigning a "compound value" - a value consisting of 3 ints. And it initializes x with that value. For such an initialization, only non- explicit constructors should be allowed. The concept for x{1, 2, 3} (without an equal sign) is that you initialize the variable with 3 values - conceptually not a compound value, but 3 separate values that you happen to give all at once. You could say it's a "constructor call" in the most general sense of that term.
The other initialization you showed is really something completely different from the above two:
T x({1, 2, 3});
It only calls the constuctors of T with {1, 2, 3} as an argument. It doesn't do any of the fancy things, like initializing an array if T is an array or initializing struct members if T is an aggregate struct/class. If T is not a class, that declaration is not valid. But if T happens to have a copy or move constructor, then it can in turn use that constructor to construct a temporary T by copy list-initialization and bind the copy/move constructor reference parameter to that temporary. I believe you will not need that form often in real code.
All this is recorded in the committee proposal papers for initializer lists. In this case, you want to have a look at Initializer Lists — Alternative Mechanism and Rationale, at section "A programmer's view of initialization kinds":
We have observed that expert programmers who are aware of a difference between copy-
initialization and direct-initialization frequently erroneously think that the former is less efficient than the latter. (In practice, when both initializations make sense, they are equally efficient.)
We find, in contrast, that it is more useful to think about these things in different terms:
- constructing by calling a constructor (a "ctor-call")
- constructing by transferring a value (a "conversion")
(As it happens, the former corresponds to "direct-initialization", and the latter to "copy-
initialization", but the standard's terms don't help the programmer.)
Later on, they find
Note that since we treat the { ... } in
X x = { ... };
as a single value, it is not equivalent to
X x{ ... };
where the { ... } is an argument list for the constructor call (we emphasize it because it is unlike N2531).
The rules as laid out in the C++0x FDIS are slightly different than presented in that paper, but the rationale presented in that paper is kept and implemented in the C++0x FDIS.