摘要: 1.1 数据结构的基本概念 数据结构的三要素:逻辑结构、存储结构、数据的运算 逻辑结构: 线性结构:线性表、栈、队列;非线性结构:树、图、集合 与存储结构无关,独立于计算机 存储结构: 即物理结构,包括顺序存储(随机存取,碎片多)、链式存储(不会出现碎片,指针占用存储空间,只能实现顺序存取)、索引存 阅读全文
posted @ 2021-06-13 11:52 BernardBlack 阅读(887) 评论(0) 推荐(0) 编辑
摘要: 一、git起步https://www.runoob.com/git/git-install-setup.html1、下载git(Windows)2、安装GUI(TortoiseGit)3、查看git配置:$ git config --list 二、git本地仓库https://www.runoob. 阅读全文
posted @ 2021-06-13 08:38 BernardBlack 阅读(63) 评论(0) 推荐(0) 编辑
摘要: https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Access_control_CORS 阅读全文
posted @ 2018-05-31 17:30 BernardBlack 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 要改变引用参数的值,参数要加关键字out或者ref, 首先:两者都是按地址传递的,使用后都将改变原来参数的数值。 其次:ref可以把参数的数值传递进函数,但是out是要把参数清空,就是说你无法把一个数值从out传递进去的,out进去后,参数的数值为空,所以你必须初始化一次。这个就是两个的区别,或者说 阅读全文
posted @ 2018-05-04 12:35 BernardBlack 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 1、在Dto上加Formatter,前端直接获取formatter 2、easyUI:在js里添加formatter { field: 'EnableFormatter', title: '是否有效', width: 100, sortable: true, formatter: function( 阅读全文
posted @ 2018-04-18 17:02 BernardBlack 阅读(312) 评论(0) 推荐(0) 编辑
摘要: Log4net系列一:Log4net搭建之文本格式输出 https://blog.csdn.net/liyan530/article/details/77821900 阅读全文
posted @ 2018-04-16 15:46 BernardBlack 阅读(97) 评论(0) 推荐(0) 编辑
摘要: http://www.runoob.com/csharp/csharp-regular-expressions.html 阅读全文
posted @ 2018-04-09 17:26 BernardBlack 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 最近项目中使用Autofuc实现依赖注入时出现错误: None of the constructors found with 'Autofac.Core.Activators.Reflection.DefaultConstructorFinder' on type 'XXXController' c 阅读全文
posted @ 2018-03-26 10:18 BernardBlack 阅读(419) 评论(0) 推荐(0) 编辑
摘要: 发生在automap 3.3.0 版本,不用Map<>,用DynamicMap<>就可以了 阅读全文
posted @ 2018-03-22 16:40 BernardBlack 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 未把xml文件的属性设置为“嵌入的内容” 阅读全文
posted @ 2018-03-20 16:54 BernardBlack 阅读(1248) 评论(0) 推荐(0) 编辑