博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
julia在mac环境变量_在Julia中找到值/变量的类型
阅读量:2529 次
发布时间:2019-05-11

本文共 1056 字,大约阅读时间需要 3 分钟。

julia在mac环境变量

To find the type of a variable/value, we use the typeof() function – it accepts a parameter whose type to be found and returns its data type.

为了找到变量/值的类型,我们使用typeof()函数-它接受要查找其类型的参数并返回其数据类型。

Example 1:

范例1:

name = "Mark"age = 21# printing the type of the valuesprintln("typeof(\"Mark\"): ", typeof("Mark"))println("typeof(21): ", typeof(21))# printing the type of the variablesprintln("typeof(name): ", typeof(name))println("typeof(age): ", typeof(age))

Output

输出量

typeof("Mark"): Stringtypeof(21): Int64typeof(name): Stringtypeof(age): Int64

Example 2:

范例2:

# variablesa = 10b = 10.23c = 'c'd = "Hello"e = truef = falseg = 0h = 0.0# printing the type of the variablesprintln("typeof(a): ", typeof(a))println("typeof(b): ", typeof(b))println("typeof(c): ", typeof(c))println("typeof(d): ", typeof(d))println("typeof(e): ", typeof(e))println("typeof(f): ", typeof(f))println("typeof(g): ", typeof(g))

Output

输出量

typeof(a): Int64typeof(b): Float64typeof(c): Chartypeof(d): Stringtypeof(e): Booltypeof(f): Booltypeof(g): Int64

翻译自:

julia在mac环境变量

转载地址:http://kytzd.baihongyu.com/

你可能感兴趣的文章
Power of Two
查看>>
奇异值分解(Singular Value Decomposition)
查看>>
Insertion Sort List
查看>>
#1014 : Trie树
查看>>
#1015 : KMP
查看>>
143. Reorder List
查看>>
Linked List Cycle
查看>>
Linked List Cycle II
查看>>
138. Copy List with Random Pointer
查看>>
61. Rotate List
查看>>
83. Remove Duplicates from Sorted List
查看>>
82. Remove Duplicates from Sorted List II
查看>>
86. Partition List
查看>>
21. Merge Two Sorted Lists
查看>>
24. Swap Nodes in Pairs
查看>>
23. Merge k Sorted Lists
查看>>
25. Reverse Nodes in k-Group
查看>>
19. Remove Nth Node From End of List
查看>>
92. Reverse Linked List II
查看>>
34. Search for a Range
查看>>