在C 中遍歷字串(容器類)的三種方式

2021-10-08 01:52:57 字數 747 閱讀 3077

把字串「1234」轉換為整形1234,為例來說明遍歷字串的三種方式:

1.常規方式(下標+operator),類似陣列方式

#include

#include

using

namespace std;

intstrtoint1

(string str)

return value;

}int

main()

2.使用迭代器方法,和stl中的vector,map,list等容器一樣使用迭代器遍歷

#include

#include

using

namespace std;

intstrtoint2

(string str)

return value;

}int

main()

3.新式for迴圈。對於vector等容器類也可以使用該方式遍歷其中的元素

#include

#include

#include

#include

using

namespace std;

intstrtoint3

(string str)

return value;

}int

main()

c 遍歷字串的三種方式

就以 把字串 1234 轉換為整形1234,為例來說明遍歷字串的三種方式 常規方式 下標 operator include include include include using namespace std int strtoint1 string str return value int ma...

拼接數字 Python中字串拼接的三種方式

在python中,我們經常會遇到字串的拼接問題,在這裡我總結了三種字串的拼接方式 1.使用加號 號進行拼接 加號 號拼接是我第一次學習python常用的方法,我們只需要把我們要加的拼接到一起就行了,不是變數的使用單引號或雙引號括起來,是變數直接相加就可以,但是我們一定要注意的是,當有數字的時候一定要...

C語言 關於遍歷字串的三種方法

寫在前面的話 這裡介紹c語言遍歷字串的三種方法。include include define max size 1024 int main int len printf please input string gets src len strlen src printf string for int...