int i(0);
int i{0};
int i = 0;
int i = (0);
int i = {0};
int i([]() {return 0;}());
int i = ([]()-> int {return 0;})();
int i = ([]()-> int {return 0;}());
int i = std::invoke([]()-> int {return 0;});
choose your fighter
int i(0);
int i{0};
int i = 0;
int i = (0);
int i = {0};
int i([]() {return 0;}());
int i = ([]()-> int {return 0;})();
int i = ([]()-> int {return 0;}());
int i = std::invoke([]()-> int {return 0;});
choose your fighter
i = 0
:^)
In modern c++ it is best practice to always use the last form using invoke. This gives the compiler the chance to optimize away lvalues so that additional vtables are not created and the variable is stored in the data segment of the application.
int i;
...
i=0;
type My_Integer is new Integer;
I : My_Integer := 0;
>int i = std::invoke([]()-> int {return 0;});
what the fuck am I reading
the absolute fucking state
Or just use auto
>>int i = std::invoke([]()-> int {return 0;});
>[]()-> int {return 0;}
Lambda function that captures nothing, takes no parameters and returns 0. The ->int specifies the return value, but it largely syntactic sugar here.
>std::invoke();
Allows you to call things that satisfy the Callable attribute. This is TMP and functional programming shenanigans. In most cases you're not going to need or want to call things this way.
int i = (int)"\0\0\0";