func main() { s1 := "Hello" + " " + "World" fmt.Println(s1) //Hello World ss := []string{"Hello", "World"} fmt.Println(strings.Join(ss, " ")) //Hello ...
分类:
其他好文 时间:
2021-06-02 17:07:23
阅读次数:
0
1.alert输出 弹出警示框 使用方法 <script>window.alert("弹出警示框");</script> 2.document.write() 直接输出在页面当中 <script>document.write("hello world")</script> 3.innerHTML 写 ...
分类:
编程语言 时间:
2021-06-02 15:44:44
阅读次数:
0
#include <sys/socket.h> #include <sys/wait.h> #include <netinet/in.h> #include <netinet/tcp.h> #include <sys/epoll.h> #include <sys/sendfile.h> #inclu ...
分类:
编程语言 时间:
2021-06-02 14:40:56
阅读次数:
0
Stack-JPress免费博客模板 产品链接:Stack-JPress免费博客模板 官网链接:优质JPress主题模板、插件、教程! ...
分类:
其他好文 时间:
2021-06-02 14:07:02
阅读次数:
0
创建线程 1.继承Thread类,重写run()方法 public class ThreadCreateDemo1 { public static void main(String[] args) { MyThread thread = new MyThread(); thread.start(); ...
分类:
编程语言 时间:
2021-06-02 12:39:26
阅读次数:
0
Nojsja-JPress免费博客模板 产品链接:Nojsja-JPress免费博客模板 官网链接:优质JPress主题模板、插件、教程! ...
分类:
Web程序 时间:
2021-06-02 11:33:07
阅读次数:
0
Markdown学习 狂神 标题 几级标题用几个# 空格 字体 #### **Hello,world!** *Hello,world!* Hello,world! Hello,world Hello,world! Hello,world! <!--Hello,world!--> Hello,worl ...
分类:
其他好文 时间:
2021-06-02 11:19:35
阅读次数:
0
Markdown学习 标题: 一级标题 二级标题 三级标题 四级标题 五级标题 六级标题 字体 Hello,world! Hello,world! Hello,world! Hello,world! Hello,world! 引用 人生苦短,我学Java 分割线 图片 列表 A B C A B C ...
分类:
其他好文 时间:
2021-06-02 11:16:06
阅读次数:
0
<template> <div class="hello"> <p v-show="isShow" style="color:red;font-size:25px;">{{str1}}</p> <p v-show="!isShow" style="color:green;font-size:25px ...
分类:
其他好文 时间:
2021-05-25 18:21:49
阅读次数:
0
创建一个最简单的项目并启动 创建项目 创建应用 创建视图 创建urls 主目录注册urls 启动项目 1.创建项目 启动pycharm,然后新建一个名为quickstart的项目 安装Django(终端) pip install django 或者下面的方法安装(mac的路径Pycharm-Pref ...
分类:
其他好文 时间:
2021-05-25 17:35:41
阅读次数:
0