C++ Tutorial/STL Introduction/template Array

Материал из C\C++ эксперт
Версия от 10:29, 25 мая 2010; Admin (обсуждение | вклад) (1 версия: Импорт контента...)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Computing sum with template arrays for double array

#include <iostream>
#include <vector>
using std::cout;
using std::endl;
using std::vector;
template <typename Array>
double vectorSum(Array a, long count) { // Array can be a pointer or an iterator
  double sum = 0.0;
  for (long i = 0; i<count; ++i)
    sum += a[i];
  return sum;
}
int main() {
  double temperature[] = { 10.5, 20.0, 8.5 };
  cout << "array vectorSum = "
       << vectorSum(temperature, sizeof temperature/sizeof temperature[0])
       << endl;
  return 0;
}
array vectorSum = 39

Computing sum with template arrays for vector

#include <iostream>
#include <vector>
using std::cout;
using std::endl;
using std::vector;
template <typename Array>
double vectorSum(Array a, long count) { // Array can be a pointer or an iterator
  double sum = 0.0;
  for (long i = 0; i<count; ++i) 
    sum += a[i];
  return sum;                  
} 
int main() {
  vector<int> sunny;
  sunny.push_back(7);  
  sunny.push_back(12);  
  sunny.push_back(15);
  cout << sunny.size() << " months on record" << endl; 
  cout << "vectorSum number of sunny days: "; 
  cout << vectorSum(sunny.begin(), sunny.end() - sunny.begin()) << endl;
  return 0;
}
3 months on record
vectorSum number of sunny days: 34