تُستخدم هذه الدالة لإضافة حرف ch جديد في نهاية السلسلة النصية، مما يؤدي إلى زيادة طولها بمقدار واحد.
بناء الجملة
النظر في سلسلة s1 والحرف ch . بناء الجملة سيكون:
s1.push_back(ch);
حدود
الفصل : شخصية جديدة والتي سيتم إضافتها.
قيمة الإرجاع
ولا يقوم بإرجاع أي قيمة.
مثال 1
دعونا نرى مثال بسيط.
#include using namespace std; int main() { string s1 = 'Hell'; cout<< 'String is :' <<s1<<' '; s1.push_back('o'); cout<<'now, string is :'<<s1; return 0; } < pre> <h2>Example 2</h2> <p>Let's consider another simple example.</p> <pre> #include using namespace std; int main() { string str = 'java tutorial '; cout<<'string contains :' <<str<<' '; str.push_back('1'); cout<<'now,string is : '<<str; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> String contains :java tutorial Now,string is java tutorial 1 </pre> <h2>Example 3</h2> <p>Let's see the example of inserting an element at the end of vector.</p> <pre> #include #include using namespace std; int main() { vector s; s.push_back('j'); s.push_back('a'); s.push_back('v'); s.push_back('a'); for(int i=0;i<s.size();i++) cout<<s[i]; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Java </pre> <br></s.size();i++)></pre></'string></pre></s1<<' ';>
مثال 3
دعونا نرى مثال إدراج عنصر في نهاية المتجه.
ترتيب عشوائي في SQL
#include #include using namespace std; int main() { vector s; s.push_back('j'); s.push_back('a'); s.push_back('v'); s.push_back('a'); for(int i=0;i<s.size();i++) cout<<s[i]; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> Java </pre> <br></s.size();i++)>
\'string>