我正在为 Ruby 编写 C++ 扩展,并尝试从 Ruby 数组对象中提取 Ruby 字符串对象,并将其转换为 C/C++ 字符串对象。
我有foo.cpp:
#include <iostream>
#include <ruby.h>
VALUE bar_func(VALUE self, VALUE ary){
std::string s = StringValuePtr(rb_ary_entry(ary, 0));
...
return 0;
}
extern "C" VALUE rb_cFoo;
VALUE rb_cFoo;
extern "C" void Init_foo(){
rb_cFoo = rb_define_class("Foo", rb_cObject);
rb_define_singleton_method(rb_cFoo, "bar", RUBY_METHOD_FUNC(bar_func), 1);
}
和test.rb:
require "foo"
Foo.bar(["Hello World!"])
当我尝试编译foo.cpp
时,编译器返回一个错误,说“一个术语和操作数需要左侧值”(不是确切的消息。翻译自另一种自然语言中给出的错误消息)。这是关于我对StringValuePtr
. 我做错了什么,如何解决?