- 授权协议: GPLv3
- 开发语言: C#
- 操作系统: Windows
- 软件首页: https://modelorientedplus.com/
- 软件文档: https://www.codeproject.com/Articles/609067/Moplus-A-model-oriented-programming-language-and-I
软件介绍
Mo+ 是首个完全支持面向模型开发的编程语言和集成开发环境。Model Oriented Development (MOD) 可以让你通过简单、模型聚焦的方法进行开发。你可以将模型信息转换成源码。
模型示例:
<Solution> <SolutionName>MyOrders</SolutionName> <TemplatePath> C:\MyCodeTemplates\EntityAndPropertyReport.mpt </TemplatePath> <FeatureList> <Feature> <FeatureName>Orders</FeatureName> <EntityList> <Entity> <EntityName>Customer</EntityName> <PropertyList> <Property> <PropertyName>CustomerID</PropertyName> </Property> <Property> <PropertyName>CustomerName</PropertyName> </Property> </PropertyList> </Entity> <Entity> <EntityName>Order</EntityName> <PropertyList> <Property> <PropertyName>OrderID</PropertyName> </Property> <Property> <PropertyName>OrderName</PropertyName> </Property> <Property> <PropertyName>CustomerID</PropertyName> </Property> </PropertyList> </Entity> </EntityList> </Feature> </FeatureList> </Solution>
代码模板
<CONFIG>
NAME EntityAndPropertyReport
CATEGORY Test
NODE Solution
TOPLEVEL True
</CONFIG>
<CONTENT>
<%%-List of entities and their properties:%%>
<%%:
foreach (Entity)
{
<%%-
Entity: %%><%%=EntityName%%>
foreach (Property)
{
<%%-
Property: %%><%%=PropertyName%%>
}
}
%%>
python 3标准库
道格·赫尔曼 / 机械工业出版社 / 2018-10 / 199
在本书中,你会看到用来处理文本、数据类型、算法、数学计算、文件系统、网络通信、Internet、XML、Email、加密、并发性、运行时和语言服务等各个方面的实用代码和解决方案。在内容安排上,每一节都会全面介绍一个模块,并提供一些很有价值的补充资源链接,这使得本书成为一本理想的Python标准库参考手册。一起来看看 《python 3标准库》 这本书的介绍吧!
