gpt4 book ai didi

haxe - 在 Haxe 中没有文件名和行号的跟踪

转载 作者:行者123 更新时间:2023-12-04 06:38:41 27 4
gpt4 key购买 nike

Haxe 有 trace() ,可用于所有目标以打印内容。

trace("aa"); // Main.hx:89: aa

如何只打印内容,而不打印文件名和行号?

最佳答案

对于 sys 目标(例如 neko、php、cpp、java、cs):

Sys.println(message);

对于其他目标,这取决于您希望如何打印跟踪语句。比如可以针对JS target进行自定义:

haxe.Log.trace = function(msg, ?pos) js.Browser.window.console.log("trace: " + msg);
trace("ok?"); //will log to the console: trace: ok?

关于haxe - 在 Haxe 中没有文件名和行号的跟踪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20791591/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com