在C ++函数中返回两个变量

时间:2013-03-12 15:52:12

标签: c++

我想返回两个双变量:调用我创建的函数时。 根据一些教程(处理C ++的基础知识),我将无法做到这一点。

有办法吗?

8 个答案:

答案 0 :(得分:30)

您可以编写一个包含变量并返回变量的简单结构,或使用std::pairstd::tuple

#include <utility>

std::pair<double, double> foo()
{
  return std::make_pair(42., 3.14);
}

#include <iostream>
#include <tuple> // C++11, for std::tie
int main()
{
  std::pair<double, double> p = foo();
  std::cout << p.first << ", " << p.second << std::endl;

  // C++11: use std::tie to unpack into pre-existing variables
  double x, y;
  std::tie(x,y) = foo();
  std::cout << x << ", " << y << std::endl;

  // C++17: structured bindings
  auto [xx, yy] = foo(); // xx, yy are double
}

答案 1 :(得分:17)

您可以将对两个双精度的引用传递给函数,并在函数

中设置它们的值
void setTwoDoubles(double& d1, double& d2)
{
    d1 = 1.0;
    d2 = 2.0;
}

double d1, d2;
setTwoDoubles(d1, d2);
std::cout << "d1=" << d1 << ", d2=" << d2 << std::endl

答案 2 :(得分:15)

如果您使用的是C ++ 11,我会说理想的方法是使用std::tuplestd::tie

取自我链接到的std::tuple页面的示例:

#include <tuple>
#include <iostream>
#include <string>
#include <stdexcept>

std::tuple<double, char, std::string> get_student(int id)
{
    if (id == 0) return std::make_tuple(3.8, 'A', "Lisa Simpson");
    if (id == 1) return std::make_tuple(2.9, 'C', "Milhouse Van Houten");
    if (id == 2) return std::make_tuple(1.7, 'D', "Ralph Wiggum");
    throw std::invalid_argument("id");
}

int main()
{
    auto student0 = get_student(0);
    std::cout << "ID: 0, "
              << "GPA: " << std::get<0>(student0) << ", "
              << "grade: " << std::get<1>(student0) << ", "
              << "name: " << std::get<2>(student0) << '\n';

    double gpa1;
    char grade1;
    std::string name1;
    std::tie(gpa1, grade1, name1) = get_student(1);
    std::cout << "ID: 1, "
              << "GPA: " << gpa1 << ", "
              << "grade: " << grade1 << ", "
              << "name: " << name1 << '\n';
}

答案 3 :(得分:5)

例如,您可以使用std::pair

答案 4 :(得分:4)

从技术上讲,你不能以通常返回变量的方式返回两个变量。但是,您可以使用引用。这样,您可以将多个变量传递给函数,函数将分配它们,而不是返回任何内容:

void function(double & param1, double & param2) {
    param1 = 6.28;
    param2 = 3.14;
}

你会这样称呼它:

double var1, var2;
function(var1, var2);

答案 5 :(得分:3)

否则您无法通过引用方法返回需要使用的两个变量

    #include <iostream>
using namespace std;

// function declaration
void swap(int &x, int &y);

int main ()
{
   // local variable declaration:
   int a = 100;
   int b = 200;

   cout << "Before swap, value of a :" << a << endl;
   cout << "Before swap, value of b :" << b << endl;

   /* calling a function to swap the values using variable reference.*/
   swap(a, b);

   cout << "After swap, value of a :" << a << endl;
   cout << "After swap, value of b :" << b << endl;

   return 0;
}


// function definition to swap the values.
void swap(int &x, int &y)
{
   int temp;
   temp = x; /* save the value at address x */
   x = y;    /* put y into x */
   y = temp; /* put x into y */

   return;
}

输出将是    在调用交换函数之前100 // x    在调用swap函数之前200 // y    调用swap函数后调用200 // x    调用交换功能后100 // y

这是返回两个值

this link help you

答案 6 :(得分:2)

你不能直接这样做(因为返回值是单数) 但是,您可以在结构中放置一些值,然后返回(就像一对&lt;&gt;)。

一种常见的模式是通过引用返回输出变量:

ReturnVal Myfunction(/*in*/ BlahType _someParameters, /*out*/ ReturnType& _firstReturn, /*out*/ OtherReturnType& _secondReturn)
{
   _firstReturn = //someStuff
   _secondReturn = //someOtherStuff


return SUCCESS;
}

答案 7 :(得分:0)

您不能从一个函数返回两个值,但是您可以返回指向数组的指针或包含两个双精度的其他结构。