在 Julia 中获取字符串的大小 – sizeof() 方法
sizeof()
是 julia 中的一个内置函数,用于返回指定字符串的大小,即返回的大小将等于字符串中的代码单元数乘以一个代码单元的大小(以字节为单位)。
Syntax:
sizeof(str::AbstractString)
Parameters:
- s::AbstractString: Specified string
Returns: It returns the size of the specified string i.e, returned size will be equal to the number of code units in the string multiplied by the size (in bytes) of one code unit.
示例 1:
# Julia program to illustrate
# the use of String sizeof() method
# Get size of the specified string
println(sizeof(""))
println(sizeof("GFG"))
println(sizeof("123"))
println(sizeof("GeeksforGeeks"))
输出:
0
3
3
13
示例 2:
# Julia program to illustrate
# the use of String sizeof() method
# Get size of the specified string
println(sizeof("∀"))
println(sizeof("∀∀"))
println(sizeof("∀123"))
println(sizeof("∀∀∀GFG"))
输出:
3
6
6
12