diff --git a/02. PARA/03. Resources(資源)/C++17/for_each.md b/02. PARA/03. Resources(資源)/C++17/for_each.md index 1f3f3b8..75a4585 100644 --- a/02. PARA/03. Resources(資源)/C++17/for_each.md +++ b/02. PARA/03. Resources(資源)/C++17/for_each.md @@ -1,11 +1,11 @@ -for_each 是一個函式,它的原型是: +for_each 是一個 function,它的原型是: ```cpp template Function for_each( - InputIterator _First, + InputIterator _Start, InputIterator _Last, Function _Func ); ``` -它需要3個參數,第一個 \ No newline at end of file +它需要3個參數,第1個是開始的iterator,第2是結束的 iterator,第3個是要用來處理的 function \ No newline at end of file