All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.rookie.common.util.PrintUtil Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package com.rookie.common.util;

/**
 * @author hanhan
 */
public class PrintUtil {

    /**
     * 换行打印
     *
     * @param obj 对象
     */
    public static void print(Object obj) {
        System.out.println(obj);
    }

    /**
     * 不换行打印
     *
     * @param obj 对象
     */
    public static void printb(Object obj) {
        System.out.print(obj);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy