C++錯誤記錄

途淄發表於2020-12-02

1.

[Error] invalid types ‘int[int]’ for array subscript

當全域性變數與區域性變數為同名,格式卻不同的時候會報此錯
如全域性中int a[10]; 主函式中int a=1;
再次使用 a[] 時會報錯
2.

[Error] declaration of ‘b’ as multidimensional array must have bounds for all dimensions except the first

函式中引用多維函式時,必須宣告第一維以外的確定值

相關文章