在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
一些关于C++的出版物写到:我们经常会用到一些赋值操作,例如int a=6,前提是我们知道变量的类型。-----但我们经常不知道变量的类型,因此就要允许c++编译器帮我们判断变量类型,由此auto变量应孕而生
#include<iostream> using namespace std; int main() { auto i = 888; auto coachname = "陈培昌"; int myarray[5] = {7,8,5,48,32}; cout << i<<endl; cout << coachname << endl; } 输出结果:
#include<iostream> using namespace std; int main() { int myarray[5] = {7,8,5,48,32}; for (auto wenwa : myarray) { cout << wenwa << endl; } return 0; } 输出结果:
#include<iostream> using namespace std; int main() { auto name = "付高峰", i = 666; return 0; }
输出结果:
#include<iostream> using namespace std; int main() { auto name = "付高峰", i = "魏锐"; return 0; } |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论