我试图用参数编写流操纵器。
我上课有3个国内的CDate(年,月,日)。
所以我需要制作操纵者date_format(const char*)
。
例如:
CDate a(2006, 5, 15);
cout <<"DATE IS : " << date_format("%Y-hello-%d-world-%m-something-%d%d") << a;
输出将是:
DATE IS : 2006-hello-15-world-5-something-1515
猜猜我需要使用那个
ios_base & dummy_date_format_manipulator ( ios_base & x )
{
return x;
}
ios_base & ( * ( date_format ( const char * fmt ) ) )( ios_base & x )
{
return dummy_date_format_manipulator;
}
但我不知道如何。
答案 0 :(得分:2)
您可以使用pword
数组。
C ++中的每个iostream都有两个与之关联的数组。
ios_base::iword - array of ints
ios_base::pword - array of void* pointers
您可以在其中存储自己的数据。要获取索引,该索引引用所有iword
和pword
数组中的空元素,您应该使用函数std::ios_base::xalloc()
。它返回int,您可以将其用作*word
中的唯一索引。
您应该在启动时获取该索引一次,然后将其用于*word
的所有操作。
然后编程自己的操作将如下所示:
操纵器函数接收对ios_base
对象的引用和指向格式字符串的指针,只将该指针存储在pword
iosObject.pword(index_from_xalloc) = formatString
然后重载的运算符<<
(>>
)以相同的方式从iostream对象获取格式字符串。之后,您只需参考格式进行转换。
答案 1 :(得分:1)
带参数的操纵者与没有参数的操纵者的工作方式相同!这些只是具有合适的输出运算符的类,而不是输出值来操纵流的状态。要操纵流状态,您可能会设置一个适合的值,该值存储有与该dtream关联的iword()
或pword()
,并由输出运算符使用。
答案 2 :(得分:1)
正如chris建议的那样,我说你应该使用tm
而不是自定义日期类:
tm a{0, 0, 0, 15, 5, 2006 - 1900};
cout << put_time(&a, "%Y-hello-%d-world-%m-something-%d%d");
如果您必须实现使用get_time
和put_time
无法完成的自定义功能,那么您可能希望将tm
成员用作课程的一部分,以便您可以只扩展已经存在的功能:
class CDate{
tm m_date;
public:
CDate(int year, int month, int day): m_date{0, 0, 0, day, month, year - 1900}{}
const tm& getDate() const{return m_date;}
};
ostream& operator<<(ostream& lhs, const CDate& rhs){
auto date = rhs.getDate();
return lhs << put_time(&a, "%Y-hello-%d-world-%m-something-%d%d");
}
然后您可以按如下方式使用CDate
:
CDate a(2006, 5, 15);
cout << "DATE IS:" << a;
修改强>
再次查看您的问题后,我认为您对插入运算符的工作方式存在误解,您无法同时传递对象和格式:https://msdn.microsoft.com/en-us/library/1z2f6c2k.aspx
如果您想指定格式但仍保留CDate
课程,我再次建议使用put_time
:
cout << put_time(&a.getDate(), "%Y-hello-%d-world-%m-something-%d%d");
如果您再次坚持编写自己的格式接受函数,则需要创建一个可以内联构造并使用插入运算符支持的辅助类:
class put_CDate{
const CDate* m_pCDate;
const char* m_szFormat;
public:
put_CDate(const CDate* pCDate, const char* szFormat) : m_pCDate(pCDate), m_szFormat(szFormat) {}
const CDate* getPCDate() const { return m_pCDate; }
const char* getSZFormat() const { return m_szFormat; }
};
ostream& operator<<(ostream& lhs, const put_CDate& rhs){
return lhs << put_time(&rhs.getPCDate()->getDate(), rhs.getSZFormat());
}
您可以按如下方式使用:
cout << put_CDate(&a, "%Y-hello-%d-world-%m-something-%d%d") << endl;
答案 3 :(得分:1)
就像Dietmar说你可以将params推入iword()但我觉得这种解决方案既乏味又烦人..
我更喜欢将lambda函数安装为iomanips并使用它们直接调用各种类方法或以其他方式构建自定义打印。为此,我为mainpulators创建了一个简单的100行模板安装程序/辅助类,它可以添加lambda函数作为任何类的操纵符。
因此,对于你的CDate,你可能会将你定义为
std::ostream& dummy_date_format_manipulator (std::ostream& os)
{
CustomManip<CDate>::install(os,
[](std::ostream& oos, const CDate& a)
{
os << a.year()
<< "-hello-"
<< a.day()
<< "-world-"
<< a.month()
<< "-something-"
<< a.day() << a.day();
});
return os;
}
然后直接指向&lt;&lt; op使用manip安装程序打印助手:
std::ostream& operator<<(std::ostream& os, const CDate& a)
{
CustomManip<CDate>::print(os, a);
return os;
}
你基本完成了..
mainp安装程序代码和一个完整的示例在我的博客文章中: http://code-slim-jim.blogspot.jp/2015/04/creating-iomanip-for-class-easy-way.html
但要好一点..这里是你想要放在.h的关键部分,而不是所有的打印输出,以证明它是如何工作的:
//g++ -g --std=c++11 custom_class_manip.cpp
#include <iostream>
#include <ios>
#include <sstream>
#include <functional>
template <typename TYPE>
class CustomManip
{
private:
typedef std::function<void(std::ostream&, const TYPE&)> ManipFunc;
struct CustomManipHandle
{
ManipFunc func_;
};
static int handleIndex()
{
// the id for this Custommaniputors params
// in the os_base parameter maps
static int index = std::ios_base::xalloc();
return index;
}
public:
static void install(std::ostream& os, ManipFunc func)
{
CustomManipHandle* handle =
static_cast<CustomManipHandle*>(os.pword(handleIndex()));
// check if its installed on this ostream
if (handle == NULL)
{
// install it
handle = new CustomManipHandle();
os.pword(handleIndex()) = handle;
// install the callback so we can destroy it
os.register_callback (CustomManip<TYPE>::streamEvent,0);
}
handle->func_ = func;
}
static void uninstall(std::ios_base& os)
{
CustomManipHandle* handle =
static_cast<CustomManipHandle*>(os.pword(handleIndex()));
//delete the installed Custommanipulator handle
if (handle != NULL)
{
os.pword(handleIndex()) = NULL;
delete handle;
}
}
static void streamEvent (std::ios::event ev,
std::ios_base& os,
int id)
{
switch (ev)
{
case os.erase_event:
uninstall(os);
break;
case os.copyfmt_event:
case os.imbue_event:
break;
}
}
static void print(std::ostream& os, const TYPE& data)
{
CustomManipHandle* handle
= static_cast<CustomManipHandle*>(os.pword(handleIndex()));
if (handle != NULL)
{
handle->func_(os, data);
return;
}
data.printDefault(os);
}
};
当然,如果你真的需要参数,那么使用CustomManip :: make_installer(...)函数来完成它,但为此你必须访问博客..