当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Julia end用法及代码示例


用法:

end

end 标志着一个表达式块的结束,例如 module , struct , mutable struct , begin , let , for 等。

end 也可以在索引时使用,以表示集合的最后一个索引或数组维度的最后一个索引。

例子

julia> A = [1 2; 3 4]
2×2 Array{Int64, 2}:
 1  2
 3  4

julia> A[end, :]
2-element Array{Int64, 1}:
 3
 4

相关用法


注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 end — Keyword。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。