上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 86 下一页
摘要: 1.下载nginx并解压 http://nginx.org/en/download.html 2. 双击 nginx.exe 黑窗体一闪而过后就启动了nginx 浏览器输入http://localhost/ 成功! 在安装路径下打开命令窗口输入 nginx -s stop 3. 待补 阅读全文
posted @ 2020-08-20 08:40 富坚老贼 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-08-18 14:46 富坚老贼 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 1. 调用C代码 把C语言代码写在注释中 导入import "C" 导入和注释之间不能有空行 package main /* int add(int a,int b) { return a+b; } */ import "C" func main() { i := C.add(3,5) printl 阅读全文
posted @ 2020-08-15 22:56 富坚老贼 阅读(179) 评论(0) 推荐(0) 编辑
摘要: initstate setstate 阅读全文
posted @ 2020-08-09 09:43 富坚老贼 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 一、内联反序列化 把JSON字符串转换成 Map<String, dynamic> 或者 List<dynamic> import 'dart:convert'; main(List<String> args) { JsonCodec json = new JsonCodec(); String s 阅读全文
posted @ 2020-08-07 20:18 富坚老贼 阅读(481) 评论(0) 推荐(0) 编辑
摘要: 一、 软件开发方法 1.软件开发生命周期 软件产品从概念构思到废弃使用的全过称。 可分为三个阶段:软件定义阶段、软件开发阶段、软件运行维护阶段。 2.软件开发模型 二、需求管理 三、开发管理 四、设计方法 五、软件测试 软件测试的目的是在软件投入生产前,尽可能多地发现软件的错误和缺陷 1.测试类型 阅读全文
posted @ 2020-07-31 19:52 富坚老贼 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 1.无参数、无返回值 public class Test { public static void main(String[] args) { print(()->{ System.out.println("abc"); }); } public static void print(Student 阅读全文
posted @ 2020-07-30 23:09 富坚老贼 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 一、错误 程序无法处理,写代码时要注意 二、throw public class Test { public static void main(String[] args) { Test test=new Test(); test.chufa(3,0); } public void chufa(in 阅读全文
posted @ 2020-07-29 14:37 富坚老贼 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 一、可以生成文档 /** * @author meng * @version 1.2 */ public class Student { /** * * @param a 参数1 * @param b 参数2 * @return 两数之和 */ public int add(int a, int b 阅读全文
posted @ 2020-07-27 20:35 富坚老贼 阅读(86) 评论(0) 推荐(0) 编辑
摘要: https://docs.microsoft.com/en-us/windows-server/remote/remote-desktop-services/clients/remote-desktop-mac 阅读全文
posted @ 2020-07-27 10:08 富坚老贼 阅读(136) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 86 下一页