Skip to content

Commit 953f7ec

Browse files
committed
add readme
1 parent b48d673 commit 953f7ec

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ stackoverflow-Java-top-qa
3131
* [wait()和sleep()的区别](https://github.com/giantray/stackoverflow-java-top-qa/blob/master/contents/difference-between-wait-and-sleep.md)
3232
* [能否在一个构造器( `constructor` )中调用另一个构造器](https://github.com/giantray/stackoverflow-java-top-qa/blob/master/contents/How-do-i-call-one-constructor-from-another-in-java.md)
3333
* [ `finally` 代码块总会被执行么](https://github.com/giantray/stackoverflow-java-top-qa/blob/master/contents/Does-finally-always-execute-in-Java.md)
34+
* [如何将String转换为enum](https://github.com/giantray/stackoverflow-java-top-qa/blob/master/contents/convert-a-string-to-an-enum-in-java.md)
3435

3536
> 编程技巧
3637
@@ -65,7 +66,6 @@ stackoverflow-Java-top-qa
6566
- [Why is executing Java code in comments with certain Unicode characters allowed?](http://stackoverflow.com/questions/30727515/why-is-executing-java-code-in-comments-with-certain-unicode-characters-allowed)
6667
- [Dealing with “java.lang.OutOfMemoryError: PermGen space” error](http://stackoverflow.com/questions/88235/dealing-with-java-lang-outofmemoryerror-permgen-space-error)
6768
- [“implements Runnable” vs. “extends Thread”](http://stackoverflow.com/questions/541487/implements-runnable-vs-extends-thread)
68-
- [Convert a String to an enum in Java](http://stackoverflow.com/questions/604424/convert-a-string-to-an-enum-in-java)
6969
- [Android SDK installation doesn't find JDK](http://stackoverflow.com/questions/4382178/android-sdk-installation-doesnt-find-jdk)
7070
- [Initialization of an ArrayList in one line](http://stackoverflow.com/questions/1005073/initialization-of-an-arraylist-in-one-line)
7171
- [Java inner class and static nested class](http://stackoverflow.com/questions/70324/java-inner-class-and-static-nested-class)

contents/convert-a-string-to-an-enum-in-java.md

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
##如何将String转换为enum
22

3-
4-
53
### 问题
64
一个枚举定义:
75

0 commit comments

Comments
 (0)