use crossbeam_channel::{Receiver, bounded}; use tokio::time::{Duration, delay_for}; #[tokio::main] async fn main() { let (s, r) = bounded(10); for i i ...
分类:
其他好文 时间:
2021-07-19 16:57:38
阅读次数:
0
先看代码 using System; using System.Collections.Generic; using System.Threading.Tasks; namespace AsyncStream { class Program { static async Task Main(stri ...
JavaScript 异步编程 异步(Asynchronous, async)是与同步(Synchronous, sync)相对的概念。 在我们学习的传统单线程编程中,程序的运行是同步的(同步不意味着所有步骤同时运行,而是指步骤在一个控制流序列中按顺序执行)。而异步的概念则是不保证同步的概念,也就是 ...
分类:
编程语言 时间:
2021-06-29 16:03:41
阅读次数:
0
技术概述 做什么 这个技术是用于前后端数据交互,通过post,get等请求传送数据,以及得到响应 学习该技术的原因 我去面试的时候也有问到这个问题hh,我的回答是 axios相对于原生的ajax封装很多便捷的API,我们使用起来更加方便 axios返回的一个promise,避免了回调地狱,便于开发。 ...
分类:
移动开发 时间:
2021-06-28 20:26:38
阅读次数:
0
识别银行卡云函数card2/index.js: const cloud = require('wx-server-sdk') cloud.init({ env: cloud.DYNAMIC_CURRENT_ENV, }) exports.main = async (event, context) = ...
分类:
微信 时间:
2021-06-28 20:21:21
阅读次数:
0
封装方法 import axios from 'axios' const allowIP = ['119.133.5.19']; //允许访问 async function getIp() { const res=await axios.get('https://api.ipify.org/')// ...
分类:
其他好文 时间:
2021-06-28 18:55:02
阅读次数:
0
1 // In the renderer process. 2 3 import { desktopCapturer } from 'electron'; 4 import { screen } from '@electron/remote'; 5 6 export async function c ...
分类:
其他好文 时间:
2021-06-28 18:51:50
阅读次数:
0
function a1() { return new Promise(o => { console.log("a1") o('a1_1') }) } async function a2() { const _a2 = await a1() console.log(_a2); console.log( ...
分类:
其他好文 时间:
2021-06-28 17:45:59
阅读次数:
0
通过定时器实现间隔一秒输出1,在间隔一秒输出2 第一种通过定时器方式实现这个需求 setTimeout(()=>{ console.log(1); setTimeout(()=>{ console.log(2); },1000) },1000) 另一种通过promise来实现 let promise ...
分类:
其他好文 时间:
2021-06-21 20:07:56
阅读次数:
0
异步多线程历险记、Await/Async、Task、Thread ...
分类:
编程语言 时间:
2021-06-19 19:30:25
阅读次数:
0