C++ Error: Accessing Non-Static Data Member from Nested Type
It seems that you are trying to access a non-static data member 'm_sprLineArr' of 'ROE2023DragonStarTalent52View' from a nested type. However, this is not allowed as nested types cannot access non-static data members of their enclosing types directly.
To resolve this error, you can either make the data member 'm_sprLineArr' static or access it through an instance of the enclosing type.
原文地址: http://www.cveoy.top/t/topic/fj6T 著作权归作者所有。请勿转载和采集!