mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-31 09:03:41 -05:00
673 B
673 B
title, localeTitle
| title | localeTitle |
|---|---|
| Range For Loop | نطاق للحلقة |
النطاق القائم للحلقة
ومقرها تراوحت for حلقة يسمح سهلة حلقات على مجموعة من العناصر (مثل عناصر في وعاء).
مع التقليدية for حلقة:
std::vector<std::string> stringList {"one", "two", "three"};
for (size_t il; il < stringList.size(); il++
{
std::cout << stringList.at(il) << std::endl;
}
مع مجموعة المستندة for حلقة:
std::vector<std::string> stringList {"one", "two", "three"};
for (auto& singleString : stringList)
{
std:cout << singleString << std::endl;
}