Skip to content

INFO

TIP

:::color1

:::

:::color2

:::

TIP

WARNING

DANGER

:::color4

:::

:::color5

:::

折叠标题

折叠内容

###


plain
// TypeScript
const test = (post: DocDetail) => {
    const newPost = process(post)
  return newPost
}
export default test
plain
// Java
@Test
public void test11() {
    long start = System.currentTimeMillis();
    int a = 0;
    for(int i=0;i<1000000000;i++){
        try {
            a++;
        }catch (Exception e){
            e.printStackTrace();
        }
    }
    long useTime = System.currentTimeMillis()-start;
    System.out.println("useTime:"+useTime);
}