-
Notifications
You must be signed in to change notification settings - Fork 258
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[SUGGESTION] [BUG] The syntax of assignments and initializations should be the same for multiple arguments. #449
Comments
We went over this at #401 (comment).
AFAIK, you could always use parentheses to initialize a variable, and assign to one (modulo bugs).
Something that's always been on my mind is how
I don't think an assignment should implicitly call a constructor. |
Reading #448 (comment) made me realize that the reason these (happen to) work is thanks to the primary-expression
In its context, |
Thanks for your informative comment, and sorry for my duplicated bug report.
So semantically assignment operators are essentially the same as calling constructors. In this way, syntactically (visually) they should be the same too.
It would have only the default constructor. So we can use assignment to set its value with it: // Initialize it with default constructor
x: something = ();
// Call default constructor to set its value again
x = ();
a: int = 2;
// Set `a` to the default value of `int` which is `0`
a = ();
This would happen: // Initialize it with the constructor
x: something = data;
// Call the constructor to set its value again
x = data; Briefly, anything that we can do in declarations after |
They necessarily aren't. That's why we can still overload them.
A reason to overload |
Consistent with #451, I believe this should be a bug report.
I think this is the only problem not covered by other issues.
I'd hope the latter |
An example is |
Yes, you're right. I didn't mean to explain technically about implementation details. If |
I want to add I haven't found anywhere notes how could look syntax for those major cpp1 things:
Leaving note here, so to not forget for much later, when design will be harder to change. |
Those are not supported yet. |
I don't know if this should be separate issue, but I have found some problems with initialization inside (parameters). I'll put it here, feel free to split if needed Some excerpts
|
That's #368.
I don't think that's supposed to work. |
I think structured binding would be like this in Cpp2: // For declaration:
(a, b): tuple<int, float> = foo();
// For declaration with type deduction:
(a, b): = foo();
// For assignment:
(a, b) = foo(); It works with aggregates too. |
There should be a way to write a generalized |
This isn't about generation. |
Infact I didn't mean to suggest implementation detail. Sorry if I couldn't explain my intention well enough. My suggestion is what @AbhinavK00 pointed out (to have similar syntax for construction and assignment with |
It seems like option 3 is the same.
This seems like a departure from Cpp1, |
By constructor I mean The whole point of my suggestion (option 3) is about the syntax that if constructors and assignments are unified via x: Type = ("text", 0); The same syntax should be allowed for assignment: x = ("text", 0); My suggestion is about the syntax should be the same if internally both constructors and assignments are unified via |
OK, that makes sense. |
You might want to open a new suggestion for that |
I opened #542 for the above. |
Describe it
I don't know I'm reportring a bug or a feature request. This is an example:
I've highlighted important lines with
BUG!
comment.What is the result?
cppfront generates the following wrong Cpp1 code for
main
:So
p0
andp1
don't work at second assignment. Also the first call tocheck
doesn't work, and the type is dependent on overloadedcheck
functions.What did I expect to happen?
Let's examine the example. The following lines are similar while I expected them to work:
The first assignment is for object initialization and it works, but the second assignment doesn't work. It leads to surprises at least for novice programmers like me, whereas initialization and assignment are unified with
operator=
in Cpp2.Solutions
Three options are available.
1. Make it a syntax error. Do not support it at all.
As simple as that:
2. Support constructor call on assignment.
In assignments the type is completely known (unlike function calls in which positional argument types depend on declared overloaded functions), and
(...)
for object construction could be supported without any ambiguous.I have to mention we have two types of constructors:
implicit
andexplicit
(the default). The difference between initializations and assignments is that, initializations (first assignments) always works with bothimplicit
andexplicit
constructors, but assignments (except the first one) won't work withexplicit
constructors without any extra syntax.So the previous example for
implicit
constructor will be like this:The above example should work on assignments for
implicit
constructors, but unnamed objects are required on assignments forexplicit
constructors. It's like this for anexplicit
constructor which has only one argument of typeint
:Now, that example would be like this for
explicit
constructors:The point about this alternative solution is that it's consistent with unnamed objects, at the same time the syntax of initialization and assignment will be distinct for
explicit
constructors (but they are the same forimplicit
constructurs).This syntax complements arrays and dictionaries in Cpp2 as described in this comment. Similarly this feature can be supported for compound assignment operators to directly call a constructor.
In this way, we can easily work with arrays, dictionaries and other objects:
Similar rule applies to
-=
,*=
,/=
and other compound assignment operators.3. Make all assignments to implicitly call constructors
That is the goal of Cpp2 to unify assignments and initializations (e.g.
operator=
). It doesn't matter if a constructor isimplicit
orexplicit
for assignment operators including compound assignment operators (e.g.+=
) andreturn
statements:But
implicit
andexplicit
constructors have different behaviours in other expressions and operators such as passing arguments in function calls and etc. For example:Conclusion
I think:
Will your feature suggestion eliminate X% of security vulnerabilities of a given kind in current C++ code?
No.
Will your feature suggestion automate or eliminate X% of current C++ guidance literature?
Yes. Initialization (first assignments) and assignments (except first assignments) are unified with
operator=
in Cpp2. It leads to surprises at least for novice programmers if visually that's not true.Edits
The text was updated successfully, but these errors were encountered: