For example, Java String class have the function split()
, we developers know how to call it (refer to documentation) but we don't know how its going to process the input? I want to know the mechanism/algorithm of the code instead of knowing what parameter should I put. Can you tell me where to find the code block defined by Java? Thank you.
Asked
Active
Viewed 32 times
0

user207421
- 305,947
- 44
- 307
- 483

Chromosome25
- 33
- 5
-
Have a look on open JDK – Rockstar Dec 31 '15 at 06:19
-
This is what you're looking for http://www.docjar.com/html/api/java/lang/String.java.html – Akshay Arora Dec 31 '15 at 06:20
-
Just look in the source code. – Ajinkya Dec 31 '15 at 06:21
-
thank you guys! awesome! =) – Chromosome25 Dec 31 '15 at 06:25