HelloWorld

First repository

This is where I study and try functions of github.


Google
GitHub

WWDC - Apple Developer
https://www.netflix.com/cn/

Facebook Pop Library Image
Pop Image


Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1

This is an example inline link.

This link has no title attribute.


Updated

Title 1

private ThreadLocal<String> threadLocalFromSupplier = ThreadLocal.withInitial(() -> "ThreadLocal Initial Value");

Title 2

private void showMethod() {
    StringUtils.repeat(FOO_STRING, FOO_INT);
    StringUtils.countMatches(REPEATED_FOO_STRING, FOO_STRING);
    StringUtils.isEmpty(FOO_STRING);
}

Title 3

private void showMethod() {
    StringUtils.repeat(FOO_STRING, FOO_INT);
    StringUtils.countMatches(REPEATED_FOO_STRING, FOO_STRING);
    StringUtils.isEmpty(FOO_STRING);
}

Title 4

Quote something here 中文 中文粗体 中文斜体 中文粗体 中文斜体

Title 5

Ordered columns

  1. Column 1
  2. Column 2
  3. Column 3
  4. Column 4
  5. Column 5
  6. Column 6

Unordered items

  • Item 1
  • Item 2
  • Item 3
  • Item 4
  • Item 5
  • Item 6
  • Item 7
  • Item 8
Title 6

通用入口主方签名为public static void main(String[] args);,参数也可为可变参数String... args,即为public static void main(String... args);,还可扩充为public strictfp final synchronized static void main(String[] args) throws Exception;

Cloneable

  • clone!=original
  • clone.getClass()==original.getClass()
  • clone.equals(original)