2
Pascal中是否有與C的__LINE__
宏等價的函數?也許一個函數?在Pascal中是否有與C的__LINE__宏相當的功能?
{ Prints the line number in source file. }
begin
write(__LINE__)
end.
應該打印:
3
Pascal中是否有與C的__LINE__
宏等價的函數?也許一個函數?在Pascal中是否有與C的__LINE__宏相當的功能?
{ Prints the line number in source file. }
begin
write(__LINE__)
end.
應該打印:
3
如果你使用Free Pascal中,你可以使用:{$I %LINE%}
我不知道如何構建便攜是現有的編譯器之間。