package main import ( "fmt" ) type Cat struct{ Name string Age int } func main(){ // 第一种方式,先声明再初始化 var cat1 Cat cat1.Name = "cat1" cat1.Age = 1 fmt.Pr ...
分类:
其他好文 时间:
2021-02-16 12:03:03
阅读次数:
0
使用安装包直接安装 # 10/22/2020 安装过程如下: 1)官网下载 deb 安装包:https://www.opera.com/download 2)在 Debian 中,执行 dpkg -i opera-xxxx.deb 命令进行安装。 使用包管理器安装 cat > /etc/apt/so ...
分类:
系统相关 时间:
2021-02-16 11:40:45
阅读次数:
0
本文作为ASP.Net Core Web API学习的一部分,介绍了如何使用Nginx进行简单的负载配置。 1、将ASP.Net Core Web API项目发布到不同的服务器 例如,将项目发布到本地不同的文件夹中。 2、使用dotnet命令启动已发布的ASP.Net Core Web API服务 ...
页面重定项 例:将文本框内容传递至第二个页面: Response.Redirect("Login.aspx?name=" + txtName.Text.ToString()); 获取传过来的信息: if (Request.QueryString["name"] != null) { txtName. ...
分类:
其他好文 时间:
2021-02-15 12:04:51
阅读次数:
0
公司的C++工程迁移到了Centos8上面。现进行警告消除。发现如下警告。觉得挺有意思的记录一下。 Centos版本: cat /etc/redhat-releaseCentOS Linux release 8.2.2004 (Core) Gcc版本: gcc --versiongcc (GCC) ...
分类:
数据库 时间:
2021-02-15 11:58:50
阅读次数:
0
IfcBinary是一种定义的简单数据类型BINARY,可用于对二进制数据(如嵌入的纹理)进行编码。 注意:引入此类型是为了保持与所有本机类型的一致性。未来的IFC版本可能会在IfcSimpleValue中支持此数据类型,以便在特性集上使用。 类型:二进制 IFC4 ADD1中的历史记录新类型(修改 ...
分类:
其他好文 时间:
2021-02-15 11:54:43
阅读次数:
0
安装好Tomcat9之后,执行./start.sh启动时没有报错,但是在浏览器中打不开Tomcat的页面。而且在执行./shutdown.sh关闭服务器时报告了这样一个错误:
Tomcat9 Error: Could not find or load main class org.apache.ca... ...
分类:
Web程序 时间:
2021-02-10 13:16:40
阅读次数:
0
信号灯法 线程通信 //信号灯法 标志位 public class TestPC2 { public static void main(String[] args) { Program program = new Program(); new Player(program).start(); new ...
分类:
其他好文 时间:
2021-02-10 13:15:30
阅读次数:
0
今天在写项目时遇到如下错误 js代码如下,layui弹出层没有弹出,控制台也得不到输出 $(document).on('click','#login',function(){ let name = $("#name").val(); let password = $("#password").val ...
分类:
数据库 时间:
2021-02-09 12:21:31
阅读次数:
0
#随便写个,引用下python的import this Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than com ...
分类:
其他好文 时间:
2021-02-09 11:44:21
阅读次数:
0