我对Python(3.x)还是很陌生,实际上只想做一些简单的事情(例如,将文本小部件的文本内容发送到默认打印机)。我发现了打印文件的os方法:
#include <functional>
#include <iostream>
#define stripClass(type) void() //fake implementation of what I want to happen
struct A
{
void B() {}
};
int main()
{
decltype(&A::B) declTypeB = &A::B; //decltype of method
void (A::* decl)() = &A::B; //explicit type of method
void(*f)(); //function pointer thype when class type would be stripped from it
std::function<void()> fromFunction = f;
std::function<stripClass(decltype(&A::B))> fromDecltype = f;
return int{ 0 };
}
但是我不想先将文本小部件的内容保存到文件中。
我可能缺少明显的东西,但是有没有简单的方法可以做到这一点?