We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
练习2.27里(b)中的i2,在前面没有找到它的定义。 (a). int i = -1, &r = 0; (g). const int i2 = i, &r = i; (b). int *const p2 = &i2; 如果i2是按这个顺序来定义的话,那(b)应该不合法。p2得包含底层const const int *const p2 = &i2;
const int *const p2 = &i2;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
练习2.27里(b)中的i2,在前面没有找到它的定义。
(a). int i = -1, &r = 0;
(g). const int i2 = i, &r = i;
(b). int *const p2 = &i2;
如果i2是按这个顺序来定义的话,那(b)应该不合法。p2得包含底层const
const int *const p2 = &i2;
The text was updated successfully, but these errors were encountered: