首先创建java文件 HelloWorld.java public class HelloWorld { public static void main(String[] args) { String s = "Hollo World"; } } 编译 javac HelloWorld.java 生 ...
分类:
编程语言 时间:
2020-07-15 23:16:19
阅读次数:
110
import { service } from '@/utils/request' const myMix = { created () { this.helloWorld() this.getTypeList() }, methods: { helloWorld(){ console.log('h ...
分类:
其他好文 时间:
2020-07-14 18:16:57
阅读次数:
66
String str3 = "helloworld"; System.out.println(str3.substring(3)); System.out.println(str3.substring(2, 8)); String[] arr = str3.split("ow"); for (Str ...
分类:
其他好文 时间:
2020-07-13 18:43:15
阅读次数:
62
String str3 = "helloworld"; System.out.println(str3.substring(3)); System.out.println(str3.substring(2, 8)); String[] arr = str3.split("ow"); for (Str ...
分类:
其他好文 时间:
2020-07-13 18:37:24
阅读次数:
81
场景 Node的Web应用框架Express的简介与搭建HelloWorld: https://mp.csdn.net/console/editor/html/106650798 Express的基本路由实现对get和post等的请求和响应: https://blog.csdn.net/BADAO_ ...
分类:
Web程序 时间:
2020-07-12 20:34:25
阅读次数:
79
jQuery介绍 介绍: jQuery,顾名思义,也就是JavaScript和查询(Query),它就是辅助JavaScript开发的js类库。 核心思想: 它的核心思想是write less,do more(写得更少,做得更多),所以它实现了很多浏览器的兼容问题。 流行程度: jQuery现在已经 ...
分类:
Web程序 时间:
2020-07-08 15:45:07
阅读次数:
94
场景 ASP.NET中MVC编程模式简介与搭建HelloWorld项目: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/106795640 在上面使用MVC搭建起来Hello World项目时为了避免太多程序代码造成混淆。在新建M ...
分类:
Web程序 时间:
2020-07-07 15:15:48
阅读次数:
96
昨天基本搭好了环境,不过忘记说calico了,这里简单提一句 kubectl apply -f https://docs.projectcalico.org/manifests/calico.yaml 运行即可 今天主要是通过一个helloworld的方式来测试kubernetes的功能正常。参考h ...
分类:
Web程序 时间:
2020-07-07 13:09:35
阅读次数:
66
1.显示文件拓展名 2.新建记事本,编写以下程序 import java.io.*; public class HelloWorld{ public static void main(String[] args){ System.out.println("Hello Java!"); } } 3.保 ...
分类:
编程语言 时间:
2020-07-07 12:59:50
阅读次数:
62
今天学习了Java中的package和import 在包中写了一点作为练习 如果把Test02放到别的包,就需要import到别的包,就像这样,Test02在HelloWorld包 如果删掉import,就会出现错误 然后java:language包是java语言的核心类,不需要手动引入,所以jav ...
分类:
编程语言 时间:
2020-07-07 00:27:34
阅读次数:
72