Julia中的supertype()函数

Julia| supertype()函数 (Julia | supertype() function)

supertype() function is a library function in Julia programming language, it is used to get the concrete supertype of the given type (data type).

supertype()函数是Julia编程语言中的库函数,用于获取给定类型(数据类型)的具体超类型。

Syntax:

句法:

    supertype(x)

Here, x is the data type whose supertype to be found.

在此, x是要查找其父类型的数据类型。

Example:

例:

    supertype(Int64)
    Signed 

    supertype(Float64)
    AbstractFloat

Program:

程序:

# Example of supertype() function in Julia

println("supertype(Bool): ", supertype(Bool))
println("supertype(Char): ", supertype(Char))
println("supertype(String): ", supertype(String))
println()

println("supertype(Int8): ", supertype(Int8))
println("supertype(Int16): ", supertype(Int16))
println("supertype(Int32): ", supertype(Int32))
println("supertype(Int64): ", supertype(Int64))
println()

println("supertype(Float16): ", supertype(Float16))
println("supertype(Float32): ", supertype(Float32))
println("supertype(Float64): ", supertype(Float64))
println()

Output

输出量

supertype(Bool): Integer
supertype(Char): AbstractChar
supertype(String): AbstractString

supertype(Int8): Signed
supertype(Int16): Signed
supertype(Int32): Signed
supertype(Int64): Signed

supertype(Float16): AbstractFloat
supertype(Float32): AbstractFloat
supertype(Float64): AbstractFloat

Reference: Julia Core.supertype()

参考: Julia Core.supertype()

翻译自: https://www.includehelp.com/julia/supertype-function.aspx

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值