C++ 引用 和 指针 心得
摘要:
感谢万能的师兄= =!上班时有如下结构: 1 struct ImportFormat 2 { 3 LPCSTR fileFormat; 4 LPCSTR videoFormat; 5 LPCSTR audioFormat; 6 BOOL isPlus; 7 int priority; 8 vector &connections; 9 //const std::vector connections;10 11 };在main()调用时ImportFormat imf;报错,要求必须初始化。因为struct和class几乎完全一样,于... 阅读全文