美文网首页
Java String Operator

Java String Operator

作者: MangoDai | 来源:发表于2017-09-16 10:46 被阅读0次
        String str = "a" + "b" + "c" + "d";
        str = str + "zxcxzc" + "qweqwe";
/**
     * Loads the class with the specified <a href="#name">binary name</a>.
     * This method searches for classes in the same manner as the {@link
     * #loadClass(String, boolean)} method.  It is invoked by the Java virtual
     * machine to resolve class references.  Invoking this method is equivalent
     * to invoking {@link #loadClass(String, boolean) <tt>loadClass(name,
     * false)</tt>}.
     *
     * @param  name
     *         The <a href="#name">binary name</a> of the class
     *
     * @return  The resulting <tt>Class</tt> object
     *
     * @throws  ClassNotFoundException
     *          If the class was not found
     */
    public Class<?> loadClass(String name) throws ClassNotFoundException {
        return loadClass(name, false); //name java.lang.StringBuilder
    }

相关文章

网友评论

      本文标题:Java String Operator

      本文链接:https://www.haomeiwen.com/subject/fxsvjxtx.html