1. C#将每个单词首字母大写 private static string processing(string str)//处理这段英文的方法 { string[] strArray = str.Split("_".ToCharArray()); string result = string.Emp ...
?这是啥算法题。。 逐个判断写个循环即可 class Solution: def fizzBuzz(self, n: int) -> List[str]: result = [] for i in range(1,n+1): if i % 3 == 0 and i % 5 == 0 : result ...
分类:
编程语言 时间:
2021-06-10 17:39:18
阅读次数:
0
依赖的包为reflect。 Kind():返回最基础的类型。 type Kind uint const ( Invalid Kind = iota Bool Int Int8 Int16 Int32 Int64 Uint Uint8 Uint16 Uint32 Uint64 Uintptr Floa ...
分类:
其他好文 时间:
2021-06-09 15:36:10
阅读次数:
0
#encoding=utf-8 import pandas as pd import os import csv def concat_csv(filename,dirpath): with open(filename,'w') as f: cw=csv.writer(f) cw.writerow( ...
分类:
其他好文 时间:
2021-06-09 15:30:20
阅读次数:
0
传统多页面应用: html中的css,js文件一般通过加版本号来更新,但html页面修改后部分机型也会有缓存,导致修改不生效。 解决办法: 在nginx配置,访问html文件时,强制不缓存: 设置所有的html文件强制不缓存: location ~ .*.(htm|html)?$ { add_hea ...
分类:
移动开发 时间:
2021-06-09 15:24:30
阅读次数:
0
https://juejin.cn/post/6844903859865780231 官方原文 Note that the file property in RollingFileAppender (the parent of TimeBasedRollingPolicy) can be eithe ...
分类:
其他好文 时间:
2021-06-08 23:39:20
阅读次数:
0
<html> <head> <title>下拉列表选择框</title> <script> alert("请退出"); var flag=confirm("请选择"); if(flag){ alert("欢迎光临"); }else{ alert("手别乱点"); } var result=promp ...
分类:
其他好文 时间:
2021-06-08 22:32:47
阅读次数:
0
1.作用 它可以根据数据库中的表,来帮我们生成供mybatis使用使用实体类,xml和接口类。 2.基本用法 在maven的pom文件中引入MBG(MyBatis Generator)jar包 <dependency> <groupId>org.mybatis.generator</groupId> ...
分类:
其他好文 时间:
2021-06-07 20:05:20
阅读次数:
0
一.文件的上传 1、要有一个 form 标签,method=post 请求 2、form 标签的 encType 属性值必须为 multipart/form-data 值 3、在 form 标签中使用 input type=file 添加上传的文件 4、编写服务器代码(Servlet 程序)接收,处 ...
分类:
Web程序 时间:
2021-06-06 19:40:15
阅读次数:
0
目录 操作BOM 1、浏览器 2、window 3、navigator 4、screen 5、location 6、document 7、history 操作BOM 1、浏览器 不同的浏览器对JavaScript支持的差异主要是,有些API的接口不一样,比如A JAX,File接口。对于ES6标准, ...
分类:
编程语言 时间:
2021-06-06 19:19:58
阅读次数:
0