Why does implicit conversion happen from 'char' to 'string' when concatenating?

3 ビュー (過去 30 日間)
Concatenating char arrays results in a new char array, as expected:
>> ['a', 'b', 'c']
ans =
'abc'
However, if any element of this array is a string, there is an implicit conversion of all the char arrays to strings, and the behavior is quite different:
>> ['a', "b", 'c']
ans =
1×3 string array
"a" "b" "c"
What is the reason for this?

採用された回答

MathWorks Support Team
MathWorks Support Team 2022 年 12 月 1 日
In concatenation operations, the dominant object determines the class of the resulting array, according to the following documentation:
 
https://www.mathworks.com/help/matlab/matlab_oop/implicit-class-conversion.html#bvo4poc
Therefore, when the array contains both 'char' and 'string', the concatenation results in a 'string' array.
The following documentation includes other related examples to demonstrate this idea:
 
https://www.mathworks.com/help/matlab/matlab_prog/concatenation-examples.html

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

製品


リリース

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by