上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 53 下一页
摘要: 转自:https://support.mozilla.org/zh-CN/kb/refresh-firefox-reset-add-ons-and-settings 如果您在使用 Firefox 时遇到问题,刷新 Firefox 可以帮您解决问题。刷新功能可将 Firefox 还原到的默认状态以解决 阅读全文
posted @ 2021-01-01 18:29 夏秋初 阅读(922) 评论(0) 推荐(1)
摘要: 官方教程地址:https://golang.google.cn/doc/tutorial/call-module-code 1.在代码目录创建一个目录greetings 用来存放 greetings 模块 2.生成go.mod文件 // 官方文档写的是example.com/greetings,我这 阅读全文
posted @ 2020-12-27 12:29 夏秋初 阅读(2514) 评论(4) 推荐(2)
摘要: 官方教程地址:https://golang.google.cn/doc/tutorial/call-module-code 1.编写含有导入包的代码 package main import "fmt" import "rsc.io/quote" // 编辑器可能会提示找不到,不要着急 这个执行run 阅读全文
posted @ 2020-12-27 11:42 夏秋初 阅读(1025) 评论(0) 推荐(2)
摘要: 官方教程地址 :https://golang.google.cn/doc/tutorial/getting-started 1.先安装golang安装包 https://golang.google.cn/dl/ 2.编写hellowrld代码 package main import "fmt" fu 阅读全文
posted @ 2020-12-27 11:36 夏秋初 阅读(154) 评论(0) 推荐(0)
摘要: import java.io.*; public class TIME { public static void main(String[] args) { File oldName = new File("路径/test.png"); File newName = new File(System. 阅读全文
posted @ 2020-12-24 18:28 夏秋初 阅读(2149) 评论(0) 推荐(1)
摘要: 全文参考:https://www.cnblogs.com/Qian123/p/5339164.html#_label0 解决时区报错:https://blog.csdn.net/aayygg1234/article/details/78205240 package jnxyjsj.zs.po; im 阅读全文
posted @ 2020-12-09 15:46 夏秋初 阅读(190) 评论(0) 推荐(1)
摘要: 使用数据监听器 有时,在一些数据字段被 setData 设置时,需要执行一些操作。 例如, this.data.sum 永远是 this.data.numberA 与 this.data.numberB 的和。此时,可以使用数据监听器进行如下实现。 Component({ attached: fun 阅读全文
posted @ 2020-11-12 19:00 夏秋初 阅读(2058) 评论(0) 推荐(1)
摘要: #include<stdio.h> #include <stdlib.h> int main(){ printf("剪子包袱锤游戏\n"); int isTrue = 1; int userInput; int systemInput; char *types[3] = {"剪子","包袱","锤" 阅读全文
posted @ 2020-10-07 21:11 夏秋初 阅读(265) 评论(0) 推荐(1)
摘要: import javax.swing.JFrame; public class FrameDemo extends JFrame{ public FrameDemo(){ super("我的窗口");// 调用父类构造方法设置标题 this.setSize(300,200);// 设定窗口宽度 30 阅读全文
posted @ 2020-10-05 10:18 夏秋初 阅读(624) 评论(0) 推荐(1)
摘要: #include <stdio.h> /** * 声明主函数 * @author xiaqiuchu * @version 0.0.1 * @date 2020/09/27 * * */ int main() { // 结构体声明 struct User { char name[5]; unsign 阅读全文
posted @ 2020-09-27 10:15 夏秋初 阅读(299) 评论(0) 推荐(0)
上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 53 下一页