我正在尝试使用 Ruby C API 在模块内定义一个类。但是,我在网上看到的这种方式似乎对我不起作用。具体来说,创建了顶级模块,但在模块中找不到该类。这是我的 C 文件:
#include <ruby.h>
static VALUE mTree;
static VALUE cNode;
VALUE hello_world(VALUE klass)
{
return rb_str_new2("hello world");
}
void Init_tree()
{
mTree = rb_define_module("Tree");
cNode = rb_define_class_under(mTree, "Node", rb_cObject);
rb_define_method(cNode, "hello_world", hello_world, 0);
}
这是我的 extconf.rb:
require 'mkmf'
create_makefile('tree')
这是我的测试脚本:
require 'tree'
puts Tree # => Tree
puts Tree::Node # => uninitialized constant Tree::Node (NameError)
有人可以帮忙吗?