#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i] ...
分类:
其他好文 时间:
2021-06-02 12:09:15
阅读次数:
0
#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i] ...
分类:
其他好文 时间:
2021-06-02 12:07:29
阅读次数:
0
参考链接: https://www.runoob.com/w3cnote/javascript-promise-object.html 一、介绍 ECMAscript 6 原生提供了 Promise 对象。Promise 对象代表了未来将要发生的事件,用来传递异步操作的消息。Promise 对象有以 ...
分类:
其他好文 时间:
2021-06-02 12:06:47
阅读次数:
0
draw() { this.view.container .querySelector(".esri-view-root > .esri-view-surface") .setAttribute("data-cursor", "crosshair");//设置鼠标的样式变为十字架 let graph ...
https://www.jianshu.com/p/cf91da3c4a77 let me = { _name: "初始值" // 假设为一个私有变量 } // 为me对象添加一个name属性 Object.defineProperty(me,"name",{ // 取对象me的name值 get: ...
分类:
其他好文 时间:
2021-06-02 11:17:31
阅读次数:
0
const url = data.data.url // const url = window.URL.createObjectURL(new Blob([data.data.url])) const link = document.createElement('a') // 创建a标签 link. ...
分类:
Web程序 时间:
2021-06-02 11:14:37
阅读次数:
0
示例: for i in 1 2 3 do echo $i done #!/bin/bash for i in {1..100} do echo $i done for 循环指定分隔符 以冒号为分隔符 IFS=: 以换行符作为分隔符 IFS=$'\n' 以行为单位读取数据 #!/bin/bash I ...
分类:
系统相关 时间:
2021-06-02 11:00:55
阅读次数:
0
授权语法sql 一.用户的创建与使用 在管理员登录后可创建用户 --创建qfplan用户-create user qfplan identified by qfplan; --用户基本权限授权grant create session, connect ,resource to qfplan; --给 ...
分类:
其他好文 时间:
2021-06-02 11:00:18
阅读次数:
0
任务1#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a ...
分类:
其他好文 时间:
2021-06-02 10:47:49
阅读次数:
0
set hlsearch set number syntax on set t_Co=256 colorscheme molokai let vim_markdown_preview_browser='Google Chrome' let vim_markdown_preview_github=1 ...
分类:
系统相关 时间:
2021-06-02 10:41:09
阅读次数:
0