C++ 第二节课 结构体, 字符串 和 C语言的区分
摘要:
1 #include <iostream> 2 3 using namespace std; 4 5 6 // 结构体 7 struct Stu{ 8 string name; 9 int age; 10 11 // 结构体重的函数叫做成员函数 在 C 中是不能直接写函数的 只能使用函数指针,通过指 阅读全文
posted @ 2024-02-21 21:39 流浪のwolf 阅读(3) 评论(0) 推荐(0) 编辑