“String - object”的版本间的差异
(创建页面,内容为“String类,是0019版的核心的一部分,允许你实现比运用字符数组更复杂的文字操作。你可以连接字符串,增加字符串,寻找和...”) |
|||
(未显示同一用户的1个中间版本) | |||
第1行: | 第1行: | ||
− | + | String -object | |
+ | String类允许你实现比运用字符数组更复杂的文字操作。你可以连接字符串,增加字符串,寻找和替换子字符串以及其他操作。它比使用一个简单的字符数组需要更多的内存,但它更方便。 | ||
仅供参考,字符串数组都用小写的string表示而String类的实例通常用大写的String表示。注意,在“双引号”内指定的字符常量通常被作为字符数组,并非String类实例。 | 仅供参考,字符串数组都用小写的string表示而String类的实例通常用大写的String表示。注意,在“双引号”内指定的字符常量通常被作为字符数组,并非String类实例。 | ||
− | 函数 | + | *'''函数''' |
<pre style="color:green"> | <pre style="color:green"> | ||
String | String | ||
第26行: | 第27行: | ||
</pre> | </pre> | ||
− | 操作符 | + | *'''操作符''' |
[](元素访问) | [](元素访问) | ||
+ | |||
+(串连) | +(串连) | ||
+ | |||
==(比较) | ==(比较) | ||
− | 举例 | + | |
+ | *'''举例''' | ||
<pre style="color:green"> | <pre style="color:green"> | ||
StringConstructors | StringConstructors | ||
第45行: | 第49行: | ||
StringSubstring | StringSubstring | ||
</pre> | </pre> | ||
+ | [[https://www.microduino.cn/wiki/index.php/Arduino_%E8%AF%AD%E6%B3%95%E6%89%8B%E5%86%8C/zh 返回Arduino语法手册]] |
2016年5月23日 (一) 02:39的最新版本
String -object String类允许你实现比运用字符数组更复杂的文字操作。你可以连接字符串,增加字符串,寻找和替换子字符串以及其他操作。它比使用一个简单的字符数组需要更多的内存,但它更方便。
仅供参考,字符串数组都用小写的string表示而String类的实例通常用大写的String表示。注意,在“双引号”内指定的字符常量通常被作为字符数组,并非String类实例。
- 函数
String charAt() compareTo() concat() endsWith() equals() equalsIgnoreCase() GetBytes() indexOf() lastIndexOf length replace() setCharAt() startsWith() substring() toCharArray() toLowerCase() toUpperCase() trim()
- 操作符
[](元素访问)
+(串连)
==(比较)
- 举例
StringConstructors StringAdditionOperator StringIndexOf StringAppendOperator StringLengthTrim StringCaseChanges StringReplace StringCharacters StringStartsWithEndsWith StringComparisonOperators StringSubstring