gpt4 book ai didi

c++ - 通过引用修改单独函数中 Rcpp::List 的子部分

转载 作者:行者123 更新时间:2023-11-27 23:44:11 25 4
gpt4 key购买 nike

我希望能够通过函数修改 Rcpp::List 的子部分。由于 Rcpp::List 是指向某些 R 数据的指针,我认为可以这样做:

void modifyList(Rcpp::List l) {
l["x"] = "x";
}

// [[Rcpp::export]]
Rcpp::List rcppTest() {
Rcpp::List res;
res["a"] = Rcpp::List::create();
modifyList(res["a"]);
return res;
}

我希望得到一个列表作为 rcppTest 的返回值,其中元素“x”的值为“x”。然而,返回的列表是空的。

如果我改为使用签名 modifyList(Rcpp::List& l),我会收到编译错误

rcppTest.cpp:17:6: note: candidate function not viable: no known conversion from 'Rcpp::Vector<19, PreserveStorage>::NameProxy' (aka 'generic_name_proxy<19, PreserveStorage>') to 'Rcpp::List &' (aka 'Vector<19> &') for 1st argument

如何通过函数修改 Rcpp::List 的子部分?

最佳答案

简而言之,通过引用修改列表是不可能的。在这种情况下,您必须返回Rcpp::List,正如@RalfStubner 在评论中指出的那样。

例如

#include<Rcpp.h>

// Specified return type of List
Rcpp::List modifyList(Rcpp::List l) {
l["x"] = "x";
return l;
}

// [[Rcpp::export]]
Rcpp::List rcppTest() {
Rcpp::List res;
res["a"] = Rcpp::List::create();

// Store result back into "a"
res["a"] = modifyList(res["a"]);

return res;
}

测试:

rcppTest()
# $a
# $a$x
# [1] "x"

关于c++ - 通过引用修改单独函数中 Rcpp::List 的子部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52006424/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com