Why is argc an 'int' (rather than an 'unsigned int')?

后端 未结 13 2216
心在旅途
心在旅途 2021-01-31 01:37

Why is the command line arguments count variable (traditionally argc) an int instead of an unsigned int? Is there a technical reason for t

13条回答
  •  醉梦人生
    2021-01-31 01:51

    It was a prescient design decision to make it easier to port C programs to Java in the future since there are no unsigned types in Java.

提交回复
热议问题