C++ 容器的引用,函数调用


C++ 

vector  temp; 

对容器内元素的引用:

vector ::reference r_temp = temp.at(0); ;
对整个容器引用:
vector  &temp2 = temp;

在线编程: https://tool.lu/coderunner/    运行以下代码

#include 
#include 
#include 
#include 	
using namespace std;

void test( vector &temp2 )
{
    for (int i = 0; i < 8; i++) {
        std::cout << std::setiosflags(std::ios::uppercase) << std::hex << std::setfill('0') << std::setw(2) <<
            static_cast(*(&temp2[0] + i)) << " ";
      }
      std::cout << "    **" << std::endl;

      for (int i = 0; i < temp2.size() - 8; i++) {
        std::cout << std::setiosflags(std::ios::uppercase) << std::hex << std::setfill('0') << std::setw(2) <<
            static_cast(*(&temp2[0] + i + 8)) << " ";          

        if (i % 16 == 15) {
          std::cout << "    **" <temp(n, n+16); //将数组n的前5个元素作为向量temp的初值

//对容器内元素的引用:
//vector ::reference r_temp = temp.at(0); 
//对整个容器引用:
//vector  &temp2 = temp;
test(temp);
return 0;

}

 

你可能感兴趣的:(笔记,c++)