- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
自从我使用 Swig 以来已经有一段时间了,所以这可能是一些愚蠢的错误。
我使用 swig 为一组函数创建了接口(interface),但有些地方不对劲。例如,当我尝试调用 c 中需要 (int *) 的函数时,我收到上述错误。对我做错了什么有什么想法吗?
我使用 swig 2.0.11-1ubuntu2 运行
swig -ruby -module itkDB itkDB.i
我的界面文件是
%module itkDB
%{
#include "itkDB.h"
%}
// with an included copy of the itkDB.h file
header 包含以下声明:
CDS_EXTERN_C String
dbiInit(int *pArgc,
char *pArgv[]);
当我从 irb session 中尝试此操作时,出现上述错误:
ItkDB.dbInit 0, "blah"
生成的包装函数如下所示:
SWIGINTERN VALUE
_wrap_dbiInit(int argc, VALUE *argv, VALUE self) {
int *arg1 = (int *) 0 ;
char **arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
void *argp2 = 0 ;
int res2 = 0 ;
String result;
VALUE vresult = Qnil;
if ((argc < 2) || (argc > 2)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 2)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(argv[0], &argp1,SWIGTYPE_p_int, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "int *","dbiInit", 1, argv[0] ));
}
arg1 = (int *)(argp1);
res2 = SWIG_ConvertPtr(argv[1], &argp2,SWIGTYPE_p_p_char, 0 | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "char *[]","dbiInit", 2, argv[1] ));
}
arg2 = (char **)(argp2);
result = (String)dbiInit(arg1,arg2);
vresult = SWIG_FromCharPtr((const char *)result);
return vresult;
fail:
return Qnil;
}
最佳答案
正如预期的那样,这是一个简单的问题。添加到接口(interface)文件中的以下内容修复了该问题。事实证明,这是库实际上确实想要引用整数的少数情况之一。*INPUT 告诉 swig 允许将普通整数传递给函数,然后它创建对该传递的整数的引用并将其发送给函数。
CDS_EXTERN_C String
dbiInit(int *INPUT,
char *pArgv[]);
关于c - 痛饮 ruby "TypeError: Expected argument 0 of type int *, but got Fixnum 0",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28127955/
我目前正在尝试将包含数字 82,000 的散列 counts["email"] 除以包含值 130 万的变量 total。 当我运行 puts counts["email"]/total 时,我得到
好的,这是怎么回事? irb(main):001:0> 4/3 => 1 irb(main):002:0> 7/8 => 0 irb(main):003:0> 5/2 => 2 我知道 Ruby 在这
使用以下函数,我转到一个站点,抓取一些信息,返回一些 JSON,并将其放入 @price 实例变量中。 返回给我的 JSON 是一个数字,但是如果数字大于 1000,那么数字将包含一个逗号,所以我将其
这个问题在这里已经有了答案: TypeError (String can't be coerced into Fixnum)? (1 个回答) 关闭 8 年前。 我创建了一个程序,它接受输入学生姓名
我在这一行有这个错误(if change_needed - coins[i] >= 0 then ) String can't be coerced into Fixnum 从我的代码来看,我不明白为
我正在查看用 Ruby 1.8 为 RubyQuiz 编写的一些代码,当我在 1.9.2 中运行它时,它现在会抛出一个错误。这个方法 def encrypt(s) return process(s
我想在 Ruby 中获取当前时间的字符串: "Time is " + Time.new.month + "/" + Time.new.day + "/" + Time.new.year 但是它说“无法
当我尝试 fixnum.new 时出现未定义方法错误。 Fixnum.new # undefined method `new' for Fixnum:Class (NoMethodError) 为什
我写了下面的基本代码 puts ' Hi there , what is your favorite number ? ' number = gets.chomp puts number + ' is
我试图通过使用优化和 fixnums 从一个小的二次求解器中获得更高的速度。这是我的代码: 1: (defun solve-x (d) 2: (declare (optimize (speed
为什么数字返回输出的 ruby size 函数是这样的? 1000000.size # => 8 99999999999999999999.size # => 9 最佳答
我正在尝试编写一个从整数中提取最低阶数的函数。例如: > 24689.lowest_order => 9 到目前为止我有: class Integer def lowest_order I
例如,如果我在 irb 中键入以下内容,它会返回 Fixnum。 20.class => Fixnum 此外, 20.between?(10, 30) => true 但是,当我查看 Ruby 文档时
我可以像这样在一个实例上定义一个方法: object = Object.new def object.foo puts "5" end 用 Fixnum 尝试类似的东西是行不通的: def 3.f
我需要通过划分两个单独的计数来计算一些百分比值。我得到的计数值是 class 是 fixnum。但是当我要划分它们时,无论计数值是多少,它都会显示 0, 这里最后的结果显示为 0。 最佳答案 您
我认为 Ruby 会自动转换为 Bignum。我找到了确认 here 然而,这并没有发生: ruby 1.8.7 (358) [universal-darwin12.0] >> 2 ** 62
如何确定负 FixNum 的无符号解释? # unexpected, true (~0b01111011).to_s(2) == ("-" + (~0b01111011).abs.to_s(2)) #
该方法返回任意对象的特征类: class Object def eigenclass class #> 数组: [1, 2].eigenclass # => #> 但是对于 Fixnum
我已经写了一个基本的计算程序。该程序对某些输入运行良好,而对其他输入则给出 TypeError。我无法弄清楚这种不可预测的行为背后的原因。这是我的代码- class Conversion I = 1,
试图解决 Chris Pine 书中的一个问题。要求用户输入他们的名字和姓氏,然后它应该显示两者的字符总数。 这是我提出的众多解决方案之一: puts "First name?" first_name
我是一名优秀的程序员,十分优秀!