print method

String print()

打印字符串到控制台

返回原字符串

Implementation

String print() {
  debugPrint(this);
  return this;
}