#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 2 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:
其他好文 时间:
2021-06-10 17:57:57
阅读次数:
0
1、进入 applications cd /usr/share/applications 2、创建文件 sudo vim idea.desktop [Desktop Entry] Encoding=UTF-8 Version=1.0 Name=IntelliJ IDEA GenericName=Ja ...
分类:
系统相关 时间:
2021-06-10 17:51:51
阅读次数:
0
FileOutputStream类 <1> 基本概念 java.io.FileOutputStream类:用于将图像数据之类的原始字节流写入到输出流中。 <2> 常用的方法 方法声明 功能介绍 1.FileOutputStream(String name) 根据参数指定的文件名来构造对象 2.Fil ...
分类:
编程语言 时间:
2021-06-10 17:40:43
阅读次数:
0
Git Bash输错账号密码如何重新输入 很多时候我们容易在Git Bash操作的时候,不慎输入错误的用户名或密码,此时一直提示: remote: Incorrect username or password ( access token ) 解决办法: 1.打开控制面板(快捷打开win+R,输入c ...
分类:
其他好文 时间:
2021-06-09 15:33:00
阅读次数:
0
演示 代码 from PyQt5.QtWidgets import * import sys class pushButton(QWidget): def __init__(self): super(pushButton,self).__init__() # 对方法进行调用 self.initUI( ...
分类:
其他好文 时间:
2021-06-09 15:30:07
阅读次数:
0
1 #!/usr/bin/env python 2 # -*- coding: utf-8 -*- 3 # @Time : 2021/4/16 10:42 上午 4 # @Name : peilun 5 # @File : Fly_book.py 6 # @Software: PyCharm 7 i ...
分类:
其他好文 时间:
2021-06-09 15:27:31
阅读次数:
0
传统多页面应用: html中的css,js文件一般通过加版本号来更新,但html页面修改后部分机型也会有缓存,导致修改不生效。 解决办法: 在nginx配置,访问html文件时,强制不缓存: 设置所有的html文件强制不缓存: location ~ .*.(htm|html)?$ { add_hea ...
分类:
移动开发 时间:
2021-06-09 15:24:30
阅读次数:
0
#表结构: 1、表一:Test1 Id name age 1 2 2、表二:Test2 Id name age 1 小明 10 2 小红 8 #实现将表Test2的name和age字段数据更新到表Test1中,按照id相等的条件 1、SQLServer多表更新方法: 语法: UPDATE { tab ...
分类:
数据库 时间:
2021-06-09 15:23:01
阅读次数:
0
java文件中包含3700行 /** * Returns the {@code Class} object associated with the class or * interface with the given string name. Invoking this method is * e ...
分类:
编程语言 时间:
2021-06-09 10:31:41
阅读次数:
0
1、首先在AndroidManifest.xml文件中添加internet申请 <uses-permission android:name="android.permission.INTERNET"/> 2、然后在build.gradle文件中添加相应的依赖(添加后点击下载,后台就会自动下载相应的j ...
分类:
Web程序 时间:
2021-06-08 23:37:55
阅读次数:
0