x哥(懂的都懂)的框架, 拿点代码过来做注释. 想了解详情可以去他的github https://github.com/yimengfan/BDFramework.Core # Object files # Libraries # Shared objects (inc. Windows DLLs) ...
分类:
其他好文 时间:
2019-11-23 12:50:27
阅读次数:
224
原文:ASP.NET Core 中文文档 第四章 MVC(3.7 )局部视图(partial) 原文:Partial Views 作者:Steve Smith 翻译:张海龙(jiechen)、刘怡(AlexLEWIS) 校对:许登洋(Seay)、何镇汐、魏美娟(初见) ASP.NET Core MV... ...
分类:
Web程序 时间:
2019-11-23 09:29:18
阅读次数:
102
参考链接:https://blog.csdn.net/bell2008/article/details/40978959 复制一下: 1,问题来源是在eclipse中直接查看springside的class(由eclipse自动反编译)里面注释的乱码问题: Preferences-General-W ...
分类:
编程语言 时间:
2019-11-22 10:28:04
阅读次数:
132
centos6升级gcc-5.4及cmake3,解决运行程序gcc出现‘GLIBCXX_3.4.21‘ not found
分类:
其他好文 时间:
2019-11-22 00:40:03
阅读次数:
111
pcl::PointCloud::Ptr "PCL官网/帮助文档" 函数定义 有关boost库里的智能指针: Boost::shared_ptr,创建一个简单的智能指针是非常容易的。但是创建一个能够在大多数编译器下通过的智能指针就有些难度了。而创建同时又考虑异常安全就更为困难了。Boost::sha ...
分类:
编程语言 时间:
2019-11-21 16:58:51
阅读次数:
141
原文:深入理解.NET Core的基元(二) - 共享框架 原文:Deep-dive into .NET Core primitives, part 2: the shared framework 作者:Nate McMaster 译文:深入理解.NET Core的基元(二) - 共享框架 作者: ... ...
分类:
Web程序 时间:
2019-11-21 13:48:57
阅读次数:
105
VS2017编译错误:#error: Building MFC application with /MD[d] (CRT dll version) requires MFC shared dll version 先选择“解决方案管理器”, 然后按如下路径: 项目-》属性-》C/C++-》代码生成-》 ...
分类:
移动开发 时间:
2019-11-20 15:30:30
阅读次数:
105
突然的崩溃让我措手不及 *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'App called -statusBar or -statusBarWindow on UI ...
分类:
移动开发 时间:
2019-11-20 13:05:17
阅读次数:
514
int pid = fork(); if (pid == -1 ) {//返回-1,说明fork失败 perror("fork"); exit(1); } else if (pid > 0) {//返回子进程pid,说明是父进程 } else if (pid == 0) {//返回0,说明是子进程 ...
分类:
系统相关 时间:
2019-11-16 23:05:58
阅读次数:
88
想学习 IdentityServer4 的身份服务器的开发,但正好处于 Net Core 发布 3.0,各种框架处于升级中。 IdentityServer4 尽提供了基础的功能,界面UI 需要扩展,或者购买商业咨询服务。Github 有几个扩展的项目,其中两个处于持续的更新中,包括升级 Net Co ...
分类:
其他好文 时间:
2019-11-16 10:45:02
阅读次数:
1247