Why is System.arraycopy not camelCased?

后端 未结 1 1750
清歌不尽
清歌不尽 2021-01-01 16:16

Java\'s standard libraries seem to use camelCase for method names. Native functions like nanoTime() are no exceptions.

If so, why is Sys

相关标签:
1条回答
  • 2021-01-01 16:40

    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, NullPointerException should be called NullReferenceException.)

    0 讨论(0)
提交回复
热议问题