Too many initializers error for a simple array in bcc32

*爱你&永不变心* 提交于 2019-11-27 08:09:42

问题


Compiling the following example

struct S {};

int main() {
  S array[1] = { S() };
}

with bcc32 I get the following error:

[bcc32 Error] test.cpp(4): E2225 Too many initializers

Is it a bug in bcc32 or am I missing something and the above example is not valid C++?

Both Clang and GCC compile this example without problems.


回答1:


Borland BDS2006 (and possibly newer versions)

has some issues with default constructor/destructor for class and struct inside its C++ engine.

  • see bds 2006 C hidden memory manager conflicts for more info.

Adding custom (even empty) constructor/destructor solves many issues even yours. Try:

struct S
    {
    S(){};
    S(S& a){};
    ~S(){};
    S* operator = (const S *a){};
    //S* operator = (const S &a){}; // use this only if you have dynamic allocation members
    };

int main()
    {
    S array[1] = { S() };
    }

I tried this in BDS2006 and it looks like it works (hard to tell without anything inside struct) but you can compile and run at least...

I detect this behavior first in BDS2006 ... haven't really try BCB6 as it was junk from the start and dismiss it after few days (I think the worst BCB ever even beats BCB3,4) in BCB5 was all fine (before BDS2006 was this my favorite IDE) with this so they must have change the C++ engine (do not confuse with runtime libs !!!).

Adding even empty constructor destructor helps. If you got dynamic allocations you need to handle those of coarse. If you got nested class/struct do not forget to add these also to them too.



来源:https://stackoverflow.com/questions/33829983/too-many-initializers-error-for-a-simple-array-in-bcc32

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!