0

有没有办法在执行 Qt 脚本时使用其中的对象和函数来获取当前行号?

4

2 回答 2

0
var lineNumber = 1;
try {
    unexsistedVariable1 + unexsistedVariable2; //we have got number of this line
}
catch(e) {
    lineNumber = e.lineNumber;
}
于 2013-07-15T08:04:31.387 回答
0

使用__LINE__int 常量,编译代码时会填充该常量。

于 2016-10-12T09:45:32.317 回答