Arduino String类构造方法和以及常用方法详解

Posted perseverance52

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Arduino String类构造方法和以及常用方法详解相关的知识,希望对你有一定的参考价值。

Arduino String类构造方法和以及常用方法详解


作为数据类型引用

  • String s1 = "hello";//定义了一个String类型的变量s1并给它赋值内容。
  • String thisString = String(13, HEX);//等价于thisString=“d”
  • String thisString = String(13, BIN);//等价于thisString =“1101”

String()语法

  • String(val)
  • String(val, base)
  • String(val, decimalPlaces)

参数:val: a variable to format as a String. Allowed data types: string, char, byte, int, long, unsigned int, unsigned long, float, double.
base: (optional) the base in which to format an integral value.
decimalPlaces: only if val is float or double. The desired decimal places.

以上是关于Arduino String类构造方法和以及常用方法详解的主要内容,如果未能解决你的问题,请参考以下文章

JavaAPI 基础 以及常用的API

StringObject包装类的常用方法以及注意点

初识常用类

String类

String类常用方法

Java教程-String的常用方法总结