当我试图在 C++ 中为 Python 实现可迭代对象(使用 boost::python)时,我遇到了一个奇怪的问题。 Python 似乎总是取消引用前面的一个元素,因此,结果它跳过第一个元素并且还取消引用“结束”元素。我也不确定我的返回值策略是否正确选择,但如果我将 int 替换为 std::string 作为元素类型,它似乎是唯一可以正常工作的策略。特意选择了迭代器标记 - 我打算实现可迭代对象以访问只能遍历一次的资源。
C++代码:
#include <Python.h>
#include <boost/python.hpp>
#include <iostream>
#include <iterator>
int nextInstance{0};
class Foo
{
public:
class iterator : public std::iterator<std::input_iterator_tag, int>
{
public:
iterator() = delete;
iterator& operator=(const iterator&) = delete;
iterator(const iterator& other)
:
instance_(nextInstance++),
pos_(other.pos_)
{
std::cout << instance_ << " copy ctor " << other.instance_ << " (" << pos_ << ")\n";
}
explicit iterator(int pos)
:
instance_(nextInstance++),
pos_(pos)
{
std::cout << instance_ << " ctor (" << pos_ << ")\n";
}
bool operator==(iterator& other)
{
std::cout << instance_ << " operator== " << other.instance_ << " (" << pos_ << ", " << other.pos_ << ")\n";
return pos_ == other.pos_;
}
int& operator*()
{
std::cout << instance_ << " operator* (" << pos_ << ")\n";
return pos_;
}
iterator operator++(int)
{
++pos_;
std::cout << instance_ << " operator++ (" << pos_ << ")\n";
return *this;
}
~iterator()
{
std::cout << instance_ << " dtor\n";
}
private:
const int instance_;
int pos_{0};
};
iterator begin()
{
std::cout << "begin()\n";
return iterator(0);
}
iterator end()
{
std::cout << "end()\n";
return iterator(3);
}
};
BOOST_PYTHON_MODULE(pythonIterator)
{
boost::python::class_<Foo, boost::noncopyable>("Foo", boost::python::init<>())
.def("__iter__", boost::python::iterator<Foo, boost::python::return_value_policy<boost::python::copy_non_const_reference>>{});
}
Python代码:
#!/usr/bin/python
import pythonIterator
foo = pythonIterator.Foo()
for i in foo:
print i
输出:
end()
0 ctor (3)
begin()
1 ctor (0)
2 copy ctor 1 (0)
3 copy ctor 0 (3)
1 dtor
0 dtor
4 copy ctor 2 (0)
5 copy ctor 3 (3)
3 dtor
2 dtor
4 operator== 5 (0, 3)
4 operator++ (1)
6 copy ctor 4 (1)
6 operator* (1)
6 dtor
1
4 operator== 5 (1, 3)
4 operator++ (2)
7 copy ctor 4 (2)
7 operator* (2)
7 dtor
2
4 operator== 5 (2, 3)
4 operator++ (3)
8 copy ctor 4 (3)
8 operator* (3)
8 dtor
3
4 operator== 5 (3, 3)
5 dtor
4 dtor
最佳答案
你的后增量运算符有一个错误。具体来说,您实现的是pre-increment,而不是post-increment:
iterator operator++(int)
{
++pos_;
return *this; // return value *after* having incremented it
}
正确的实现应该是:
iterator operator++(int)
{
iterator tmp(*this);
++pos_;
return tmp; // return saved tmp *before* having incremented it
}
修复之后:
>>> list(pythonIterator.Foo())
... snip lots of output ...
[0, 1, 2]
关于python - 为什么 boost::python 迭代器会跳过第一个元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28462804/
类classAprivatedeffooputs:fooendpublicdefbarputs:barendprivatedefzimputs:zimendprotecteddefdibputs:dibendendA的实例a=A.new测试a.foorescueputs:faila.barrescueputs:faila.zimrescueputs:faila.dibrescueputs:faila.gazrescueputs:fail测试输出failbarfailfailfail.发送测试[:foo,:bar,:zim,:dib,:gaz].each{|m|a.send(m)resc
关闭。这个问题是opinion-based.它目前不接受答案。想要改进这个问题?更新问题,以便editingthispost可以用事实和引用来回答它.关闭4年前。Improvethisquestion我想在固定时间创建一系列低音和高音调的哔哔声。例如:在150毫秒时发出高音调的蜂鸣声在151毫秒时发出低音调的蜂鸣声200毫秒时发出低音调的蜂鸣声250毫秒的高音调蜂鸣声有没有办法在Ruby或Python中做到这一点?我真的不在乎输出编码是什么(.wav、.mp3、.ogg等等),但我确实想创建一个输出文件。
我有一个模型:classItem项目有一个属性“商店”基于存储的值,我希望Item对象对特定方法具有不同的行为。Rails中是否有针对此的通用设计模式?如果方法中没有大的if-else语句,这是如何干净利落地完成的? 最佳答案 通常通过Single-TableInheritance. 关于ruby-on-rails-Rails-子类化模型的设计模式是什么?,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.co
我正在使用的第三方API的文档状态:"[O]urAPIonlyacceptspaddedBase64encodedstrings."什么是“填充的Base64编码字符串”以及如何在Ruby中生成它们。下面的代码是我第一次尝试创建转换为Base64的JSON格式数据。xa=Base64.encode64(a.to_json) 最佳答案 他们说的padding其实就是Base64本身的一部分。它是末尾的“=”和“==”。Base64将3个字节的数据包编码为4个编码字符。所以如果你的输入数据有长度n和n%3=1=>"=="末尾用于填充n%
我主要使用Ruby来执行此操作,但到目前为止我的攻击计划如下:使用gemsrdf、rdf-rdfa和rdf-microdata或mida来解析给定任何URI的数据。我认为最好映射到像schema.org这样的统一模式,例如使用这个yaml文件,它试图描述数据词汇表和opengraph到schema.org之间的转换:#SchemaXtoschema.orgconversion#data-vocabularyDV:name:namestreet-address:streetAddressregion:addressRegionlocality:addressLocalityphoto:i
使用带有Rails插件的vim,您可以创建一个迁移文件,然后一次性打开该文件吗?textmate也可以这样吗? 最佳答案 你可以使用rails.vim然后做类似的事情::Rgeneratemigratonadd_foo_to_bar插件将打开迁移生成的文件,这正是您想要的。我不能代表textmate。 关于ruby-使用VimRails,您可以创建一个新的迁移文件并一次性打开它吗?,我们在StackOverflow上找到一个类似的问题: https://sta
我需要从一个View访问多个模型。以前,我的links_controller仅用于提供以不同方式排序的链接资源。现在我想包括一个部分(我假设)显示按分数排序的顶级用户(@users=User.all.sort_by(&:score))我知道我可以将此代码插入每个链接操作并从View访问它,但这似乎不是“ruby方式”,我将需要在不久的将来访问更多模型。这可能会变得很脏,是否有针对这种情况的任何技术?注意事项:我认为我的应用程序正朝着单一格式和动态页面内容的方向发展,本质上是一个典型的网络应用程序。我知道before_filter但考虑到我希望应用程序进入的方向,这似乎很麻烦。最终从任何
我想要做的是有2个不同的Controller,client和test_client。客户端Controller已经构建,我想创建一个test_clientController,我可以使用它来玩弄客户端的UI并根据需要进行调整。我主要是想绕过我在客户端中内置的验证及其对加载数据的管理Controller的依赖。所以我希望test_clientController加载示例数据集,然后呈现客户端Controller的索引View,以便我可以调整客户端UI。就是这样。我在test_clients索引方法中试过这个:classTestClientdefindexrender:template=>
为什么4.1%2返回0.0999999999999996?但是4.2%2==0.2。 最佳答案 参见此处:WhatEveryProgrammerShouldKnowAboutFloating-PointArithmetic实数是无限的。计算机使用的位数有限(今天是32位、64位)。因此计算机进行的浮点运算不能代表所有的实数。0.1是这些数字之一。请注意,这不是与Ruby相关的问题,而是与所有编程语言相关的问题,因为它来自计算机表示实数的方式。 关于ruby-为什么4.1%2使用Ruby返
它不等于主线程的binding,这个toplevel作用域是什么?此作用域与主线程中的binding有何不同?>ruby-e'putsTOPLEVEL_BINDING===binding'false 最佳答案 事实是,TOPLEVEL_BINDING始终引用Binding的预定义全局实例,而Kernel#binding创建的新实例>Binding每次封装当前执行上下文。在顶层,它们都包含相同的绑定(bind),但它们不是同一个对象,您无法使用==或===测试它们的绑定(bind)相等性。putsTOPLEVEL_BINDINGput