测试: package t1; import java.util.concurrent.TimeUnit; class MyThread implements Runnable { private String lockA; private String lockB; public MyThread ...
分类:
其他好文 时间:
2020-04-04 10:04:03
阅读次数:
91
总结一下在目前的电商系统中的商品涉及的属性spu,sku。搞清楚两者之间的关系对表的设计非常重要 spu Standard Product Unit (标准产品单位) ,一组具有共同属性的商品集 SKU Stock Keeping Unit(库存量单位),SPU商品集因具体特性不同而细分的每个商品 ...
分类:
其他好文 时间:
2020-04-03 16:27:01
阅读次数:
370
参考: 1.https://community.dynamics.com/ax/f/microsoft-dynamics-ax-forum/105963/adding-fields-to-inventonhand-form-in-ax2012 2.https://community.dynamics ...
分类:
其他好文 时间:
2020-04-03 00:42:05
阅读次数:
67
1. Cortex-M4的内核设备 NVIC, Nested vectored interrupt controller SCB, System control block SysTick, The system timer MPU, Memory protection unit FPU, Floa ...
分类:
其他好文 时间:
2020-04-02 19:55:56
阅读次数:
86
一、Rabbitmq概念RabbitMQ是一个开源的靠AMQP协议实现的服务,服务器端用Erlang语言编写,支持多种客户端,如:Python、Ruby、.NET、Java、JMS、C、PHP、ActionScript、XMPP、STOMP等,支持AJAX。用于在分布式系统中存储转发消息,在易用性、扩展性、高可用性等方面表现不俗。AMQP,即AdvancedMessageQueuingProtoc
分类:
其他好文 时间:
2020-04-01 15:09:35
阅读次数:
88
相关资料: https://www.baidu.com/link?url=yYEHJesIUg6HguekaIW-U0HtjtLn430Dh0NXSc7ej5ixppqcq21rsYMvlCo_qNOP&wd=&eqid=87bf080a00000c50000000035e83f9e4 实例: 接口 ...
分类:
其他好文 时间:
2020-04-01 14:27:23
阅读次数:
68
This is a new heuristic which is called Core First Unit Propagation in MapleLCMdistCBTcoreFirst sat solver . CFUP ( Core First Unit Propagation) heuri ...
分类:
其他好文 时间:
2020-04-01 13:08:35
阅读次数:
63
``` var head = db.Queryable().Where(w => w.CheckNumber == checkNumber && w.InspectionUnitName == inspectionUnit).ToList(); foreach (var h in head) { h... ...
分类:
其他好文 时间:
2020-04-01 12:29:31
阅读次数:
95
单元测试框架unittest 单元测试 单元测试(unit testing)是指对软件中的最小可测试单元进行检查和验证。对于单元测试中单元的含义,一般来说,要根据实际情况去判定其具体含义,如C语言中单元指一个函数,Java里单元指一个类,图形化的软件中可以指一个窗口或一个菜单等。总的来说,单元就是人 ...
分类:
其他好文 时间:
2020-03-31 21:24:12
阅读次数:
79
/** * spring的配置类,相当于bean.xml */@Configuration//@Configuration标注在类上,相当于把该类作为spring的xml配置文件中的<beans>// 作用为:配置spring容器(应用上下文)@ComponentScan("com.zxh")//需 ...
分类:
数据库 时间:
2020-03-31 21:06:33
阅读次数:
106