android 中的日志代码中的 TAG 代表什么?

what does the TAG represent in Log code in android?

我们什么时候在日志代码中使用 TAG,什么时候使用字符串?

TAG在日志代码中代表什么?

例如,这两行代码有什么区别,我怎么知道什么时候选择哪一行? Log.d(TAG, "点击: "); Log.d("string" , "onClick: ");

TAG is a best practice (good convention).

定义TAG常量后,您可以在后续log调用中使用它。

'string' also works, but it's Hard Coding.

查看有关 Hard Coding

的 wiki