5
在茱莉亞,Char和String不具有可比性。如何將Char轉換爲Julia中的字符串?
julia> 'a' == "a"
false
如何將Char值轉換爲String值?
我已經嘗試了以下功能,但都沒有工作。
julia> convert(String, 'a')
ERROR: MethodError: Cannot `convert` an object of type Char to an object of type String
julia> String('a')
ERROR: MethodError: Cannot `convert` an object of type Char to an object of type String
julia> parse(String, 'a')
ERROR: MethodError: no method matching parse(::Type{String}, ::Char)