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
图8-1(变量声明形式使用决策流程图) 中,在“是否使用默认类型”--> "N" 时:
a :=(int32)17
a := int32(17)
var a = (int32)17
var a = int32(17)
The text was updated successfully, but these errors were encountered:
已更新到勘误表,感谢指出。
Sorry, something went wrong.
afb4351
No branches or pull requests
图8-1(变量声明形式使用决策流程图) 中,在“是否使用默认类型”--> "N" 时:
a :=(int32)17
,实际应为a := int32(17)
。var a = (int32)17
,实际应为var a = int32(17)
The text was updated successfully, but these errors were encountered: