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


Julia oftype()用法及代码示例


这个oftype()是 julia 中的一个内置函数,用于将给定类型的元素 y(say) 转换为 x(say) 类型的元素。

用法: oftype(x, y)

参数:

  • x:指定第一种类型的元素。
  • y:指定的第二类元素。

返回值:它返回转换后的元素类型。

范例1:




# Julia program to illustrate 
# the use of oftype() method
  
# Getting the converted type of elements.
a = 1;
b = 2.0;
println(oftype(a, b))

输出:

2

范例2:


# Julia program to illustrate 
# the use of oftype() method
  
# Getting the converted type of elements.
a = 1;
b = 2.0;
println(oftype(b, a))

输出:

1.0

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Type conversion of elements in Julia – oftype() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。