侧边栏壁纸
博主头像
工作笔记

若批评无自由,则赞美无意义。

  • 累计撰写 190 篇文章
  • 累计创建 206 个标签
  • 累计收到 20 条评论
标签搜索

目 录CONTENT

文章目录

markdown示例,开发使用

工作笔记
2023-01-07 / 0 评论 / 13 点赞 / 301 阅读 / 359 字 / 正在检测是否收录...
温馨提示:
🌝 免责声明:本文存在此处完全是为了方便个人工作记录学习,不存在任何商业利益信息。若不小心影响到您的利益,请联系首页博主信息中公开的邮箱,博主将进行删除处理。谢谢合作!

h1 标题

h2 标题

h3 标题

h4 标题

h5 标题
h6 标题

题目序号:(1244、5421、1850)

题目来源:字节 、映客

频次:3

答案1:(peace)

(1)与其他作为学术实验开始的语言不同,Go 代码的设计是务实的。每个功能和语法决策都旨在让程序员的生活更轻松。
(2)Golang针对并发进行了优化,并且在规模上运行良好。
(3)由于单一的标准代码格式,Golang 通常被认为比其他语言更具可读性。
(4)自动垃圾收集明显比 Java 或 Python 更有效,因为它与程序同时执行。
(5)Go在语言层面支持高并发
(6)Go属于开发效率和运行效率折中的一门语言

水平线




文本样式

This is bold text

This is bold text

This is italic text

This is italic text

Strikethrough

列表

无序

  • Create a list by starting a line with +, -, or *
  • Sub-lists are made by indenting 2 spaces:
    • Marker character change forces new list start:
      • Ac tristique libero volutpat at
      • Facilisis in pretium nisl aliquet
      • Nulla volutpat aliquam velit
  • Very easy!

有序

  1. Lorem ipsum dolor sit amet

  2. Consectetur adipiscing elit

  3. Integer molestie lorem at massa

  4. You can use sequential numbers…

  5. …or keep all the numbers as 1.

Start numbering with offset:

  1. foo
  2. bar

代码

Inline code

Indented code

// Some comments
line 1 of code
line 2 of code
line 3 of code

Block code “fences”

Sample text here...

Syntax highlighting

var foo = function (bar) {
  return bar++;
};

console.log(foo(5));
13

评论区