编写自己的接口api-做自己心中的大神

Posted q1359720840

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编写自己的接口api-做自己心中的大神相关的知识,希望对你有一定的参考价值。

常用api注解

/**
 *
 * @param <E> 这是一个超级接口的泛型
 *
 * @author  谁写的
 * @author  Neal Gafter
 * @see     Set
 * @see     List
 * @see     Map
 * @see     SortedSet
 * @see     SortedMap
 * @see     HashSet
 * @see     TreeSet
 * @see     ArrayList
 * @see     LinkedList
 * @see     Vector
 * @see     Collections
 * @see     Arrays
 * @see     AbstractCollection
 * @since 1.2
 */

public interface Collection<E> extends Iterable<E> {

另请参阅:

技术图片

  /**
     * Returns <tt>true</tt> if this collection contains all of the elements
     * in the specified collection.
     *
     * @param  传入参数
     * @return  返回参数
     * @throws 抛出异常
     * @throws  抛出异常2
     * @see    #contains(Object) 参照某个方法
     */
    boolean containsAll(java.util.Collection<?> c);

 

以上是关于编写自己的接口api-做自己心中的大神的主要内容,如果未能解决你的问题,请参考以下文章

怎么为自己的网站编写api接口

Vue电商后端管理API接口测试

Vue电商后端管理API接口测试

Flask 编写http接口api及接口自动化测试

创建自己的代码片段(CodeSnippet)

java语言 编写接口开发需要用到WebService么?