- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个“功能迭代器”类型的类——也就是说,迭代器返回的值首先由一个函数对象处理,它是模板参数。此模板参数的默认值为“平凡仿函数”,它只返回它收到的参数。
当我添加 const
成员函数时出现问题,该成员函数应返回对元素的 const
引用。为简单起见,假设我们有一个“前向迭代器”并希望有一个函数“peek_next”,它允许查看下一个元素,但不能更改它。这是我的看法(这是最小的可编译示例):
#include <functional>
#include <iostream>
#include <vector>
/**
* This is an empty functor which just returns back its argument.
*/
template <class T>
class basic_functor: public std::unary_function<T, T>
{
public:
typedef basic_functor self;
basic_functor()
{}
/**
* Returns back the argument passed to it. const version
*/
inline const T& operator()(const T& arg) const
{ return arg; }
/**
* Returns back the argument passed to it.
*/
inline T& operator()(T& arg)
{ return arg; }
};// class basic_functor
/**
* @param S type of the elements.
* @param BaseIterator type of the iterator it builds upon.
* @param functor which is applied to the element to which iterator points.
* by default it is empty functor -- the element itself is returned.
*/
template <typename S,
typename BaseIterator,
typename Functor=basic_functor<S> >
class iterator_functional:
public std::iterator<std::forward_iterator_tag,
typename Functor::result_type >
{
public:
///type defining itself
typedef iterator_functional self;
///type of the functor
typedef Functor functor_type;
///type of linear iterator
typedef BaseIterator base_iterator_type;
///type for rebinding the iterator with another functor
template <typename F>
struct rebind
{
typedef iterator_functional<S, base_iterator_type, F> other;
};
/**
* Constructor.
*/
iterator_functional(base_iterator_type it,
functor_type funct = functor_type()):
m_it(it),
m_functor(funct)
{
}
/**
* Copying constructor.
* @param other source of the data.
*/
iterator_functional(const self&other):
m_it(other.m_it),
m_functor(other.m_functor)
{ }
/**
* Provides access to element to which iterator points.
* @return element to which iterator points to.
*/
inline typename self::reference operator*()
{ return m_functor(*m_it); }
/**
* Provides access to element to which iterator points.
* @return element to which iterator points to.
*/
inline const typename self::reference operator*() const
{ return m_functor(*m_it); }
// Will work only when the code below is 'unlocked'
#if 0
/**
* Returns reference to the next element.
*/
inline typename self::reference peek_next()
{
auto temp_it = m_it;
++temp_it;
return
m_functor(*temp_it);
}//iterator_type_const
#endif
/**
* Returns reference to the next element.
*/
inline const typename self::reference peek_next() const
{
auto temp_it = m_it;
++temp_it;
return
m_functor(*temp_it);
}//iterator_type_const
private:
base_iterator_type m_it;
functor_type m_functor;
};//iterator_functional;
typedef std::vector<int>::iterator v_int_iterator;
typedef std::vector<int>::const_iterator v_int_const_iterator;
typedef iterator_functional<int, v_int_iterator> iterator_type;
typedef iterator_functional<const int, v_int_const_iterator> iterator_type_const;
int main()
{
std::vector<int> vec_1({1, 2, 3, 4});
const std::vector<int> vec_2({5, 6, 7, 8});
iterator_type it(vec_1.begin());
std::cout << " *it =" << *it << "; it.peek_next() = " << it.peek_next() << std::endl;
iterator_type_const cit(vec_2.begin());
std::cout << "*cit =" << *cit << "; cit.peek_next() = " << cit.peek_next() << std::endl;
return 0;
}
问题是要编译此示例,我必须允许非 const 版本的 peek_element 函数。否则编译器失败并显示消息
error: invalid initialization of reference of type 'std::iterator<std::forward_iterator_tag, int, long int, int*, int&>::reference {aka int&}' from expression of type 'const int'
据我所知,编译器使用 basic_functor::operator()
的非常量版本。
那么我该如何避免呢?是的,我知道 unary_function
已从 C++17 中删除。
最佳答案
好的,感谢评论中的讨论(@danadam 和@DavisHerring),我找到了答案。我误读了错误。编译器使用了正确版本的 basic_functor::operator()
好吧——问题是 iterator_functional::peek_next()
的返回类型。
我认为 const typename self::reference
与 const S&
相同,但事实并非如此。这不是对 const 的引用,而是 const 引用!因此,const
位被忽略,因此我试图将 basic_functor::operator()
返回的 const S&
转换为 S&
-- iterator_functional::peek_next()
的返回类型。
因此,解决方案不是使用const typename self::reference
,而是
inline const typename self::value_type& operator*() const
{ return m_functor(*m_it); }
相反。
谁知道!
附言在与@DavisHerring 进一步讨论后,我将改进后的工作示例放在这里。亮点:
basic_functor
不需要第二个 operator()
。只要是用const T
模板参数创建即可。S
模板参数并将其从 BaseIterator
中获取。请注意,我需要将 std::remove_reference
与 BaseIterator::reference
一起使用,因为 const_iterator::value_type
不是常量类型。<所以在这里(ta-da):
#include <functional>
#include <iostream>
#include <vector>
/**
* This is an empty functor which just returns back its argument.
*/
template <class T>
class basic_functor: public std::unary_function<T, T>
{
public:
typedef basic_functor self;
basic_functor()
{}
/**
* Returns back the argument passed to it.
*/
inline T& operator()(T& arg) const
{ return arg; }
};// class basic_functor
/**
* @param S type of the elements.
* @param BaseIterator type of the iterator it builds upon.
* @param functor which is applied to the element to which iterator points.
* by default it is empty functor -- the element itself is returned.
*/
template <typename BaseIterator,
typename Functor=basic_functor<
typename std::remove_reference<
typename BaseIterator::reference>::type > >
class iterator_functional:
public std::iterator<std::forward_iterator_tag,
typename Functor::result_type>
{
public:
///type defining itself
typedef iterator_functional self;
///type of the functor
typedef Functor functor_type;
///type of linear iterator
typedef BaseIterator base_iterator_type;
/**
* Constructor.
*/
iterator_functional(base_iterator_type it,
functor_type funct = functor_type()):
m_it(it),
m_functor(funct)
{
}
/**
* Copying constructor.
* @param other source of the data.
*/
iterator_functional(const self&other):
m_it(other.m_it),
m_functor(other.m_functor)
{ }
/**
* Provides access to element to which iterator points.
* @return element to which iterator points to.
*/
inline typename self::reference operator*() const
{ return m_functor(*m_it); }
/**
* Returns reference to the next element.
*/
inline const typename self::value_type& peek_next() const
{
auto temp_it = m_it;
++temp_it;
return
m_functor(*temp_it);
}//iterator_type_const
private:
base_iterator_type m_it;
functor_type m_functor;
};//iterator_functional;
typedef std::vector<int>::iterator v_int_iterator;
typedef std::vector<int>::const_iterator v_int_const_iterator;
typedef iterator_functional<v_int_iterator> iterator_type;
typedef iterator_functional<v_int_const_iterator> iterator_type_const;
int main()
{
std::vector<int> vec_1({1, 2, 3, 4});
const std::vector<int> vec_2({5, 6, 7, 8});
iterator_type it(vec_1.begin());
*it = 9;
std::cout << " *it =" << *it << "; it.peek_next() = " << it.peek_next() << std::endl;
iterator_type_const cit(vec_2.begin());
std::cout << "*cit =" << *cit << "; cit.peek_next() = " << cit.peek_next() << std::endl;
return 0;
}
关于c++ - 如何使用 C++ 中的平凡仿函数避免 "invalid initialization of reference"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56221590/
我们已经有一个使用 AnyEvent 的库。它在内部使用 AnyEvent,并最终返回一个值(同步 - 不使用回调)。有什么方法可以将这个库与 Mojolicious 一起使用吗? 它的作用如下: #
我想从 XSD 文件生成带有 JAXB 的 Java 类。 问题是,我总是得到一些像这样的类(删除了命名空间): public static class Action { @X
我有一个关于 html 输入标签或 primefaces p:input 的问题。为什么光标总是自动跳转到输入字段。我的页面高度很高,因此您需要向下滚动。输入字段位于页面末尾,光标自动跳转(加载)到页
我今天在考虑面向对象设计,我想知道是否应该避免 if 语句。我的想法是,在任何需要 if 语句的情况下,您都可以简单地创建两个实现相同方法的对象。这两个方法实现只是原始 if 语句的两个可能的分支。
String graphNameUsed = graphName.getName(); if (graphType.equals("All") || graphType.equals(
我有一张友谊 table CREATE TABLE IF NOT EXISTS `friendList` ( `id` int(10) NOT NULL, `id_friend` int(10
上下文 Debian 64。Core 2 二人组。 摆弄循环。我使用了同一循环的不同变体,但我希望尽可能避免条件分支。 但是,即使我认为它也很难被击败。 我考虑过 SSE 或位移位,但它仍然需要跳转(
我最近在 Java 中创建了一个方法来获取字符串的排列,但是当字符串太长时它会抛出这个错误:java.lang.OutOfMemoryError: Java heap space我确信该方法是有效的,
我正在使用 (C++) 库,其中需要使用流初始化对象。库提供的示例代码使用此代码: // Declare the input stream HfstInputStream *in = NULL; tr
我有一个 SQL 查询,我在 WHERE 子句中使用子查询。然后我需要再次使用相同的子查询将其与不同的列进行比较。 我假设没有办法在子查询之外访问“emp_education_list li”? 我猜
我了解到在 GUI 线程上不允许进行网络操作。对我来说还可以。但是为什么在 Dialog 按钮点击回调上使用这段代码仍然会产生 NetworkOnMainThreadException ? new T
有没有办法避免在函数重定向中使用 if 和硬编码字符串,想法是接收一个字符串并调用适当的函数,可能使用模板/元编程.. #include #include void account() {
我正在尝试避免客户端出现 TIME_WAIT。我连接然后设置 O_NONBLOCK 和 SO_REUSEADDR。我调用 read 直到它返回 0。当 read 返回 0 时,errno 也为 0。我
我正在开发 C++ Qt 应用程序。为了在应用程序或其连接的设备出现故障时帮助用户,程序导出所有内部设置并将它们存储在一个普通文件(目前为 csv)中。然后将此文件发送到公司(例如通过邮件)。 为避免
我有一组具有公共(public)父类(super class)的 POJO。这些存储在 superclass 类型的二维数组中。现在,我想从数组中获取一个对象并使用子类 的方法。这意味着我必须将它们转
在我的代码中,当 List 为 null 时,我通常使用这种方法来避免 for 语句中的 NullPointerException: if (myList != null && myList.size
我正在尝试避免客户端出现 TIME_WAIT。我连接然后设置 O_NONBLOCK 和 SO_REUSEADDR。我调用 read 直到它返回 0。当 read 返回 0 时,errno 也为 0。我
在不支持异常的语言和/或库中,许多/几乎所有函数都会返回一个值,指示其操作成功或失败 - 最著名的例子可能是 UN*X 系统调用,例如 open( ) 或 chdir(),或一些 libc 函数。 无
我尝试按值提取行。 col1 df$col1[col1 == "A"] [1] "A" NA 当然我只想要“A”。如何避免 R 选择 NA 值?顺便说一句,我认为这种行为非常危险,因为很多人都会陷入
我想将两个向量合并到一个数据集中,并将其与函数 mutate 集成为 5 个新列到现有数据集中。这是我的示例代码: vector1% rowwise()%>% mutate(vector2|>
我是一名优秀的程序员,十分优秀!