-
-
Notifications
You must be signed in to change notification settings - Fork 129
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
String class plus plus #49
Comments
Maybe it get confused and sum the string object address? |
I get a similar problem with integers:
It concats strB properly but srtA is weird and corrupted:
What happened? |
Hi there, Sorry for late replay. I just got my chips and tried it. In line below: strA += num + " <- A"; There is a problem. “num” is declared as an integer, but " <- A" is a string array. When the complier sees this, it takes the address of the first char of the string array as the value ( or you can call it as a string pointer). Now there is another problem, the complier will take the result of “num + “<-A”” as a string pointer, or an integer? I don’t know. By the result of the output, I will believe the result is a string array pointer. So strA += a rondon string pointer will result in an unpredictable result. In order to give the complier a clear instruction, it should be done like below: strA += String(num) + " <- A"; Now num will be turned into String, a String plus string array will be consider as a class. There might be one more problem. += has priority over +, so strA += String(num) will be done first before + “<-A”, this might result in unpredictable result. It should be consider as a mistake, but how does this complier to do it? I don’t know. If I’d write this program, below will be what I will do: strA += (String(num) + String(" <- A")); That will make sure that the complier will make no mistake. or it can be done like strB. what do you think? Frank Calgary, Canada Sent from Windows Mail |
I see, thank you for explaining that. I still believe this is an issue |
Hi Jaden, Thanks for your reply. As I know about the C, it’s the first language and it’s very like machine codes. C is actually a group of functions. So the compiler simply translates C into a group of functions, and that’s also how a compiler works. At the early years when I learned C, as far as I remember an expression like “A += B + 100” would report an error. In an expression like A = B + C + D, it will be translated into A = (B + C) + D, and B + C will be used as parameter for function calling, when the function returns a value X, we get a new expression, A = X + D, so X + D will be new the parameters for the same function calling. Every function has a return value and be put into stack, when CPU returns from a function, it’s pops out the stack and receive the return. So all the functions have the same data type, it’s up to us to define what kind of data it is. The compiler can not decide the right data type for us. There is a default data type in a function calling, that is the first parameter used. So, if we don’t specify the data type, the compiler will use the default, which would always result in unexpected mistakes. Have fun and wish you the best! Frank |
I understand that is the case. It was just annoying coming from languages |
String str0, str1, str2, str3;
str0 = str1 + str2 + str3; //// will cause problem
str0 += str1 + str2; //// will cause problem
str0 = str1; str0 += str2; str0 += str3; // good.
The text was updated successfully, but these errors were encountered: