我正在尝试使用 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)

有人可以帮忙吗?

最佳答案

这很奇怪,你的例子对我有用:

→ ruby extconf.rb
creating Makefile
→ make
linking shared-object tree.bundle
→ irb
>> $:<<'.'
=> [...]
>> require 'tree'
=> true
>> Tree
=> Tree
>> Tree.class
=> Module
>> Tree::Node.class
=> Class
>> Tree::Node.new.hello_world
=> "hello world"

关于c - 使用 Ruby C API 在模块中定义类,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9236210/

10-15 08:28