sidebar.ts 3.5 KB
Newer Older
沉默王二's avatar
沉默王二 已提交
1 2 3 4
import { defineSidebarConfig } from "vuepress-theme-hope";

export default defineSidebarConfig([
  {
沉默王二's avatar
沉默王二 已提交
5 6
    text: "Java核心",
    icon: "java",
沉默王二's avatar
沉默王二 已提交
7
    collapsable: true,
沉默王二's avatar
沉默王二 已提交
8 9
    children: [
      {
沉默王二's avatar
沉默王二 已提交
10
        prefix: "overview/",
沉默王二's avatar
沉默王二 已提交
11
        text: "Java概述",
沉默王二's avatar
沉默王二 已提交
12
        icon: "gaishu",
沉默王二's avatar
沉默王二 已提交
13
        collapsable: true,
沉默王二's avatar
沉默王二 已提交
14
        children: ["what-is-java", "hello-world"],
沉默王二's avatar
沉默王二 已提交
15 16
      },
      {
沉默王二's avatar
沉默王二 已提交
17
        text: "Java基础语法",
沉默王二's avatar
沉默王二 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
        icon: "jichuyufa",
        collapsable: true,
        children: [
        "basic-grammar/basic-data-type", 
        "basic-grammar/flow-control", 
        "basic-grammar/operator", 
        "basic-grammar/javadoc",
        "basic-extra-meal/48-keywords",
        "basic-extra-meal/java-naming"
        ],
      },
      {
        text: "Java面向对象编程",
        icon: "duixiangmoxing",
        collapsable: true,
        children: [
        "oo/object-class", 
        "oo/var", 
        "oo/method", 
        "oo/construct",
        "oo/code-init", 
        "oo/abstract", 
        "oo/interface",
        "oo/static", 
        "oo/this-super", 
        "oo/final", 
        "oo/instanceof",
        "basic-extra-meal/immutable", 
        "basic-extra-meal/varables", 
        "basic-extra-meal/generic",
        "basic-extra-meal/annotation",
        "basic-extra-meal/enum",
        "basic-extra-meal/fanshe"
        ],
      },
      {
        text: "字符串&数组",
        icon: "Field-String",
        collapsable: true,
        children: [
        "string/immutable", 
        "string/constant-pool", 
        "string/intern", 
        "string/equals",
        "string/join", 
        "string/split", 
        "array/array",
        "array/print"
        ],
      },
      {
        text: "集合框架(容器)",
        icon: "rongqi",
        collapsable: true,
        children: [
        "collection/gailan", 
        "collection/arraylist", 
        "collection/linkedlist", 
        "collection/list-war-2",
        "collection/iterator-iterable", 
        "collection/fail-fast", 
        "collection/hashmap",
        ],
      },
      {
        text: "Java IO",
        icon: "shurushuchu",
        collapsable: true,
        children: [
        "io/shangtou", 
        "io/BIONIOAIO", 
        ],
      },
      {
        text: "异常处理",
        icon: "yichangchuli",
        collapsable: true,
        children: [
        "exception/gailan", 
        "exception/try-with-resouces", 
        "exception/shijian",
        "exception/npe"
        ],
      },
      {
        text: "常用工具类",
        icon: "gongju",
        collapsable: true,
        children: [
        "common-tool/arrays", 
        "common-tool/collections", 
        "common-tool/hutool",
        "common-tool/guava"
        ],
      },
      {
        text: "Java新特性",
        icon: "xintexing",
        collapsable: true,
        children: [
        "java8/stream", 
        "java8/optional", 
        "java8/Lambda",
        ],
      },
      {
        text: "Java重要知识点",
        icon: "zhongyaotishi",
        collapsable: true,
        children: [
        "basic-extra-meal/java-unicode", 
        "basic-extra-meal/int-cache", 
        "basic-extra-meal/box", 
        "basic-extra-meal/deep-copy",
        "basic-extra-meal/hashcode", 
        "basic-extra-meal/equals-hashcode", 
        "basic-extra-meal/override-overload", 
        "basic-extra-meal/Overriding", 
        "basic-extra-meal/pass-by-value",
        "basic-extra-meal/true-generic",
        "basic-extra-meal/comparable-omparator",
        ],
沉默王二's avatar
沉默王二 已提交
140 141 142 143
      },
    ],
  },
]);