This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.ArrayList; | |
import java.util.Collections; | |
import java.util.Comparator; | |
import java.util.List; | |
/** | |
* 复现jdk7排序兼容问题 | |
* | |
* @author jianchengxu | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.cheng470; | |
/** | |
* <p> | |
* Description:生成中文书籍章节 | |
* </p> | |
* | |
* @author XuJianCheng | |
* @version 1.0 | |
* @since 2018/9/23 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
driver=com.mysql.jdbc.Driver | |
url=jdbc:mysql://localhost:3306/test | |
username=root | |
password=123456 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.test.bean; | |
public class User { | |
private Integer id; | |
private String name; | |
private String password; | |
public Integer getId() { | |
return id; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.test.bean; | |
public class User { | |
private Integer id; | |
private String name; | |
private String password; | |
public Integer getId() { | |
return id; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.test.dao.jdbc; | |
import java.sql.Connection; | |
import java.sql.DriverManager; | |
import java.sql.ResultSet; | |
import java.sql.SQLException; | |
import java.sql.Statement; | |
import org.junit.Test; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function wrapElements(a) { | |
var result = [], i, n; | |
for (i = 0, n = a.length; i < n; i++) { | |
result[i] = function() { return a[i]; }; | |
} | |
return result; | |
} | |
var wrapped = wrapElements([10, 20, 30, 40, 50]); | |
var f = wrapped[0]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+function () { | |
}; | |
(function () { | |
}); | |
void function() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function isReallyNaN(x) { | |
return x !== x; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<head> | |
<meta charset="utf-8"> | |
<title>ECharts</title> | |
</head> | |
<body> | |
<!-- 为ECharts准备一个具备大小(宽高)的Dom --> | |
<div id="main" style="height:400px"></div> |
NewerOlder