上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 17 下一页
摘要: 示例代码如下: // 表明这个go文件属于main包, 每个文件都属于一个包 package main // 导入标准输入输出包 import ( "fmt" ) // 主函数 func main(){ fmt.Println("hello world") } 阅读全文
posted @ 2021-03-31 20:02 程序员陈师兄cxycsx 阅读(47) 评论(0) 推荐(0)
摘要: 示例代码如下: // 头文件 #include <stdio.h> // 全局变量 int age = 18; // 主函数 int main(){ // 局部变量 float price = 23.6f; printf("%f\n", price); // 返回值 return 0; } 变量的作 阅读全文
posted @ 2021-03-31 19:05 程序员陈师兄cxycsx 阅读(56) 评论(0) 推荐(0)
摘要: 1.C语言数据类型 char short int long long long float double 注:C语言没有字符串类型 示例代码如下: // 头文件 #include <stdio.h> // 主函数 int main(){ char c = 'a'; // 打印输出 printf("% 阅读全文
posted @ 2021-03-31 19:02 程序员陈师兄cxycsx 阅读(77) 评论(0) 推荐(0)
摘要: 1.图解1 2.图解2 阅读全文
posted @ 2021-03-31 17:14 程序员陈师兄cxycsx 阅读(41) 评论(0) 推荐(0)
摘要: 1.图解 2.解释 View 视图层 ViewModel 视图模型 Model 数据层 阅读全文
posted @ 2021-03-31 16:39 程序员陈师兄cxycsx 阅读(174) 评论(0) 推荐(0)
摘要: 示例代码如下: <div id="counter"> 当前计数:{{count}} <!-- <button v-on:click='count++'>+</button> <button v-on:click='count--'>-</button> --> <!-- <button v-on:c 阅读全文
posted @ 2021-03-31 16:22 程序员陈师兄cxycsx 阅读(61) 评论(0) 推荐(0)
摘要: 示例代码如下: <ul id='books'> <li v-for='item in books'>{{item}}</li> </ul> <script> const app = new Vue({ el: '#books', // 挂载元素 data: { books: ['水浒传', '红楼梦 阅读全文
posted @ 2021-03-31 16:00 程序员陈师兄cxycsx 阅读(46) 评论(0) 推荐(0)
摘要: 1.过滤 status-code:200 method:Post 2.XHR请求重发 右键 > Replay XHR 阅读全文
posted @ 2021-03-31 12:11 程序员陈师兄cxycsx 阅读(45) 评论(0) 推荐(0)
摘要: 1.全屏滚动长截图 打开开发者工具 > ctrl + shift + p > capture 阅读全文
posted @ 2021-03-31 12:02 程序员陈师兄cxycsx 阅读(295) 评论(0) 推荐(0)
摘要: 1.查找文件 ctrl + p 2.加载运行代码 Snippets 在其他面板加载运行代码 ctrl + p > ! 阅读全文
posted @ 2021-03-31 11:59 程序员陈师兄cxycsx 阅读(77) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 17 下一页