Java’s standard libraries seem to use camelCase for method names. Native functions like nanoTime() are no exceptions.
If so, why is System.arraycopy not camelCased?
Is there something special about System.arraycopy?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s been in Java for before v1.0 was released – so my guess is that it predates the naming conventions, and it was missed in a sweep of the API when the naming conventions were decided.
(In other news,
NullPointerExceptionshould be calledNullReferenceException.)