Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

ฟังก์ชัน string at() ใน C++


ในส่วนนี้เราจะมาดูกันว่าฟังก์ชัน at a () คืออะไรใน C++ ฟังก์ชัน at() ใช้เพื่อเข้าถึงอักขระในตำแหน่งที่กำหนด

ในโปรแกรมนี้ เราจะวนซ้ำอักขระแต่ละตัวโดยใช้ฟังก์ชัน a () และพิมพ์เป็นบรรทัดต่างๆ

โค้ดตัวอย่าง

#include<iostream>
using namespace std;

main() {
   string my_str = "Hello World";

   for(int i = 0; i<my_str.length(); i++) {
      cout << my_str.at(i) << endl; //get character at position i
   }
}

ผลลัพธ์

H
e
l
l
o

W
o
r
l
d