控制台类初始化函数名称
我开发了一个静态 Console 类,它将所有跟踪、成功和错误写入日志文件。它需要一个文件路径 String 和一个 LoaderInfo 实例才能开始。目前,该函数名为 start(path, loaderInfo)。我不太喜欢“开始”这个名字,所以我想知道是否有更准确的东西。对我来说,开始方法总是有结束/停止方法,但由于这个没有,所以“开始”似乎不合适。
I developed a static Console class that writes any traces, successes, and errors to a log file. It requires a file path String and a LoaderInfo instance to get started. At the moment, the function is named start(path, loaderInfo). I'm not really feeling the name "start", so I'm wondering if there's something more accurate. To me, start methods always have end/stop methods, but since this one doesn't, "start" doesn't seem appropriate.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
帕特里克·斯图尔特的风格怎么样?
makeItSo();
How about a touch of the Patrick Stewart?
makeItSo();
init(除非那被采取了?)
init (unless thats taken?)
Console.logTo(路径,loaderInfo)?
Console.logTo(path, loaderInfo) ?
我会使用 startLogging(),然后使用 stopLogging()。
I would go with startLogging(), then to be followed up by stopLogging().