What is the difference between a null array and an empty array?

前端 未结 4 536
傲寒
傲寒 2020-12-29 23:39

If the individual elements of an int array are not initialized, what is stored in them by default? I apparently found that there is something like an empty array or a null a

4条回答
  •  一生所求
    2020-12-30 00:38

    If the individual elements of an int array are not initialized, what is stored in them by default?

    0

    empty array is array with 0 elements

    I haven't heard about null array but it is probably an array with non zero element reference which are null

提交回复
热议问题