0
有沒有辦法在執行Qt Script時使用對象和函數來獲取當前行號?如何獲取Qt Script代碼中的當前行號?
有沒有辦法在執行Qt Script時使用對象和函數來獲取當前行號?如何獲取Qt Script代碼中的當前行號?
var lineNumber = 1;
try {
unexsistedVariable1 + unexsistedVariable2; //we have got number of this line
}
catch(e) {
lineNumber = e.lineNumber;
}
使用__LINE__
int常量,當您編譯代碼時將會填充它。