引用向量

发布于 2024-10-16 08:51:14 字数 719 浏览 5 评论 0 原文

我有这段代码

void split(vector<float> &fvec, string str)
{
    int place = 0;
        for(int i=0; i<str.length(); i++)
        {
            if(str.at(i) == ' ')
            {
                fvec.push_back(atoi(str.substr(place,i-place).c_str()));
                place=i+1;
            }
        }
        fvec.push_back(atoi(str.substr(place).c_str()));
}

我想做的是将向量的引用传递到方法中,以便它将我给它的字符串分割成浮点数而不复制向量...我不想复制向量,因为它将包含 1000 个数字。

是否无法通过引用传递向量,或者我只是犯了一个愚蠢的错误?

如果它有帮助的话,我正在测试它的代码

int main (void)
{
    vector<float> fvec;
    string str = "1 2 2 3.5 1.1";

    split(&fvec, str);

    cout<<fvec[0];

    return 0;
}

I have this code

void split(vector<float> &fvec, string str)
{
    int place = 0;
        for(int i=0; i<str.length(); i++)
        {
            if(str.at(i) == ' ')
            {
                fvec.push_back(atoi(str.substr(place,i-place).c_str()));
                place=i+1;
            }
        }
        fvec.push_back(atoi(str.substr(place).c_str()));
}

What im trying to do is pass a reference to a vector into the method so it splits the string i give it into floats without copying the vector... i dont want to copy the vector because it will be containing 1000's of numbers.

is it not possible to pass a vector by reference or am i just making a stupid mistake?

if it helps heres the code im testing it out with

int main (void)
{
    vector<float> fvec;
    string str = "1 2 2 3.5 1.1";

    split(&fvec, str);

    cout<<fvec[0];

    return 0;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

昔日梦未散 2024-10-23 08:51:14

这确实是可能的。您只是使用了错误的语法。正确的方法是:

split(fvec, str);

您所做的事情是错误的,因为它将向量的地址作为预期的引用传递。

It is indeed possible. You're just using the wrong syntax. The correct way to do it is :

split(fvec, str);

What you're doing is wrong because it passes the address of the vector as the intended reference.

混吃等死 2024-10-23 08:51:14

如果您使用的是现代编译器,例如 gcc/g++,它会为您进行命名返回值优化,这样您就不需要通过引用或指针传递返回值。

请参阅:

http://en.wikipedia.org/wiki/Return_value_optimization/

http://cpp-next.com/archive/2009/08/想要按值速度传递/

If you are using a modern compiler, like gcc/g++, it does named return value optimization for you, so that you don't need to pass the return value by reference or pointer.

See:

http://en.wikipedia.org/wiki/Return_value_optimization/

http://cpp-next.com/archive/2009/08/want-speed-pass-by-value/

黎歌 2024-10-23 08:51:14

您正在传递向量的地址。 (split(&fvec, str);)

调用应为 split(fvec, str);,不带 &

You are passing the address of the vector. (split(&fvec, str);)

The call should be split(fvec, str); without the &.

若无相欠,怎会相见 2024-10-23 08:51:14

显而易见的是 main 函数中的 split(&fvec, str); ,这意味着您传递的不是向量而是向量的地址向量。如果您的向量参数是指针,则这是正确的做法,但如果它是引用,则不是。请改用 split(fvec, str); 。

另外,您可能需要考虑的一件事是在函数中构建向量并正常返回它。这可能会被编译器优化掉。如果您没有使用具有返回值优化功能的编译器,则通过更改编译器可能会比尝试手动调整代码获得更好的结果。

而且,如果您担心传递大数据结构,那么字符串参数又如何呢?那不是变大了吗?

The obvious thing that leaps out is the split(&fvec, str); in your main function, which means you're not passing a vector but the address of a vector. This is the right thing to do if your vector parameter is a pointer, but not if it's a reference. Use split(fvec, str); instead.

Also, one thing you might consider is building the vector in the function and returning it as normal. This is likely to be optimized out by the compiler. If you're not using a compiler with return value optimization ability, you're likely to get better results by changing compilers than trying to tune your code manually.

And, if you're worried about passing big data structures around, what of the string parameter? Doesn't that get large?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文