.net core 3.x 对插件化开发还是比较友好 静态资源提供了RCL Content 只要通过 _content/{areaName}/ 就能访问对应 areaName 中的静态资源。 发布时会自动生成 _content目录 目前框架结构如下: mvc. web为入口模块,core 为引用模块 ...
分类:
Web程序 时间:
2020-11-06 02:17:50
阅读次数:
31
强联通分量及缩点 #include<bits/stdc++.h> #define re register #define v e[i].to using namespace std; const int lzw=1e4+3; int n,m,head[lzw],tot,h[lzw],cnt,dfn[ ...
分类:
其他好文 时间:
2020-11-06 01:55:25
阅读次数:
17
一、GCC分布编译 xxx.c文件经历的一系列编译过程: #include <stdio.h> int main() { printf("Hello, World!\n"); return 0; } /* * gcc * * GCC的分布编译 * xxx.c文件 -> xxx.exe可执行文件 * ...
分类:
其他好文 时间:
2020-11-06 01:54:59
阅读次数:
16
 enum { HTTP_TYPE_UPLOAD = 0x0, HTTP_TYPE_DOWNLOAD }; typedef stru ...
分类:
其他好文 时间:
2020-11-04 19:07:09
阅读次数:
21
1.选择要画图的单元 2.显示和位移云图 plnsol,u,sum,0,1.0 ! 绘制和位移云图 ...
分类:
其他好文 时间:
2020-11-04 18:26:12
阅读次数:
20
1 #include <bits/stdc++.h> 2 using namespace std; 3 const int mac=4e5+50; 4 int head[mac],vis[mac],dis[mac]; 5 int n,m,num,i,j,t; 6 struct edge{ 7 int ...
分类:
其他好文 时间:
2020-11-04 17:45:08
阅读次数:
15
一直都知道golang的反射语法,但是对于什么场景下使用reflect反射没有概念,肝了两个晚上,整理了下用到过的场景: 1、框架接口的入参。 2、基类寻找子类的类型,并调用其变量、方法。 下面代码,包含了常见reflect的使用场景: 1 package reflect 2 3 import ( ...
分类:
其他好文 时间:
2020-11-02 10:50:37
阅读次数:
46