dongtanhe4607 2010-01-20 03:35
浏览 271
已采纳

Go中的切片类型有什么意义?

I have read this but still not fully aware of the advantage of slice against array.So I am expecting somebody in SO explain better than it and I am sure you can :)

  • 写回答

4条回答 默认 最新

  • download20151010 2010-01-24 05:48
    关注

    Slices have a lot of uses over arrays, several of which other posters have already mentioned.

    • Slices can operate in many ways like pointers.
      • Multiple slices can "point" to the same base array
      • Slices are passed by reference, but since a slice itself is a pointer it can be used to pass "arrays" around much more efficiently since the entire array doesn't need to be copied.
    • However, unlike pointers, slices provide additional buffer safety
      • Slice underflows and overflows trigger exceptions, rather than allowing you an unsafe ability to access other areas of memory.
      • Slices allow you to limit access to only certain areas of an array. This can be extremely useful in working with subsets.
    • The length of a slice is dynamically determined at runtime, unlike arrays which have their sizes fixed at compile time. Also, slices can be dynamically resized at runtime.
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥20 access多表提取相同字段数据并合并
  • ¥20 基于MSP430f5529的MPU6050驱动,求出欧拉角
  • ¥20 Java-Oj-桌布的计算
  • ¥15 powerbuilder中的datawindow数据整合到新的DataWindow
  • ¥20 有人知道这种图怎么画吗?
  • ¥15 pyqt6如何引用qrc文件加载里面的的资源
  • ¥15 安卓JNI项目使用lua上的问题
  • ¥20 RL+GNN解决人员排班问题时梯度消失
  • ¥60 要数控稳压电源测试数据
  • ¥15 能帮我写下这个编程吗