- 授权协议: GPLv3
- 开发语言: C/C++
- 操作系统: 跨平台
- 软件首页: https://github.com/rita-marylin-raquel/softbloks
- 软件文档: https://github.com/rita-marylin-raquel/softbloks
软件介绍
Softbloks 是一款免费的跨平台的应用框架,为开发者提供一个有效的开发模式,自下而上或者自上而下,提高开发效率。
示例代码:
class MainObject : public sb::AbstractSoft
{
public:
MainObject()
{
// 1) register the property Qt.mainview in read-only mode
// - the method get_widget is passed as reading accessor (std::bind is
// used to convert the method into a std::function bound to this)
// - empty value (nullptr) is passed as writing accessor
this->register_property<QWidget*>(
"Qt.mainview",
sb::READ_ONLY,
std::bind(&MySoft::get_widget, this),
nullptr
);
}
QWidget* get_widget()
{
return new QLabel("Hello World!!!");
}
};
SB_DECLARE_CLASS(
MainObject,
"MainObject",
sb::AbstractSoft
)
// 2) declare the properties of the class
SB_DECLARE_PROPERTIES(
MainObject,
{"Qt.mainview", {typeid(QWidget*), sb::READ_ONLY}}
)
SB_DECLARE_MODULE(/*a description should go here*/)
{
sb::register_object<MainObject>();
}
挑战程序设计竞赛
秋叶拓哉、岩田阳一、北川宜稔 / 巫泽俊、庄俊元、李津羽 / 人民邮电出版社 / 2013-7-1 / CNY 79.00
世界顶级程序设计高手的经验总结 【ACM-ICPC全球总冠军】巫泽俊主译 日本ACM-ICPC参赛者人手一册 本书对程序设计竞赛中的基础算法和经典问题进行了汇总,分为准备篇、初级篇、中级篇与高级篇4章。作者结合自己丰富的参赛经验,对严格筛选的110 多道各类试题进行了由浅入深、由易及难的细致讲解,并介绍了许多实用技巧。每章后附有习题,供读者练习,巩固所学。 本书适合程序设计......一起来看看 《挑战程序设计竞赛》 这本书的介绍吧!
