Добрый деньТак компилируетКодC++ (Qt)QVector theVec;vec.push_back(0);const int * thePtr = &theVec[0];А так нетКодC++ (Qt)QVector theVec;vec.push_back(0);const int ** thePtr = &theVec[0];(invalid conversion from int ** to const int **)Так проходитКодC++ (Qt)typedef int * TInt;QVector theVec;vec.push_back(0);const TInt * thePtr = &theVec[0];Почему?
|