arduino / arduino/ArduinoCore-API

String class plus plus

Open
#49 6 comments 0 reactions 1 assignee Claimed by @cmaglie View on GitHub
Dominant language
C++
Stars
306
Forks
150
PR merge metrics
No merged PRs in 30d

Description

String str0, str1, str2, str3;

str0 = str1 + str2 + str3; //// will cause problem
str0 += str1 + str2; //// will cause problem

str0 = str1; str0 += str2; str0 += str3; // good.

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.