码迷,mamicode.com
首页 >  
搜索关键字:mount new    ( 78676个结果
裁剪PNG图片透明部分
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u ...
分类:其他好文   时间:2021-06-02 20:39:46    阅读次数:0
C#ImmutableList和ReadOnlyCollection的区别
var intList = new List<int>() { 1 }; var readOnlyList = new ReadOnlyCollection<int>(intList); var immutableList = intList.ToImmutableList(); Console.F ...
分类:Windows程序   时间:2021-06-02 20:35:02    阅读次数:0
插着USB mic开机时,系统没有声音问题
Platform: RockchipOS: Android 7.1.2Kernel: 4.4 1.问题描述:当插上USB mic录音设备开机时,系统没有声音。开机后再接上USB mic,此时声音就正常。 2.问题分析: 接着usb mic开机时,MT100:/ # cat /proc/asound/ ...
分类:其他好文   时间:2021-06-02 20:30:25    阅读次数:0
this指向
1.作为普通函数调用this指向全局 2.作为构造函数new 调用this指向实例 不用new指向全局 3.箭头函数this指向它的上一层函数的this 4.对象调用函数内方法,this指向该对象 5.apply /call/ bind指向传入的对象 ...
分类:其他好文   时间:2021-06-02 20:26:58    阅读次数:0
初识Promise
首先说一下什么是构造函数:构造函数,是一种特殊的方法。主要用来在创建对象时初始化对象, 即为对象成员变量赋初始值,总与new运算符一起使用在创建对象的语句中。特点:1.构造函数的功能主要用于在类的对象创建时定义初始化的状态。2.构造函数不能被直接调用,必须通过new运算符在创建对象时才会自动调用;而 ...
分类:其他好文   时间:2021-06-02 20:22:37    阅读次数:0
RedisConfig 配置
import com.alibaba.fastjson.support.spring.GenericFastJsonRedisSerializer; import org.springframework.cache.CacheManager; import org.springframework.c ...
分类:其他好文   时间:2021-06-02 20:05:07    阅读次数:0
Arcgisapi for js 4.x使用query/goto/PopupTemplate
let layerUrl = "http://xxx.xxx.xx.xx/server/rest/services/xxxx/xxxx/MapServer/194";//服务地址 let queryTask = new this.esriModules.QueryTask(layerUrl);//创 ...
分类:Windows程序   时间:2021-06-02 20:02:22    阅读次数:0
vue $forceUpdate() 强制重新渲染及四种方案对比
v-for里面数据层次太多,或者套的组件层级太多, 数据变了,页面没有重新渲染,需手动强制刷新。 解决方法:运用 this.$forceUpdate()强制刷新 迫使 Vue 实例重新渲染。注意它仅仅影响实例本身和插入插槽内容的子组件,而不是所有子组件。 vue强制重新渲染四种方案对比 前言 Vue ...
分类:其他好文   时间:2021-06-02 19:42:45    阅读次数:0
Java mybatis日期比较查询
public static SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd");public static SimpleDateFormat format1 = new SimpleDateFormat( "yyyyMMdd HH:m ...
分类:编程语言   时间:2021-06-02 19:42:04    阅读次数:0
在linux 系统下创建账号and root it
1、首先在Linux系统下创建新的账户: 添加用户,首先用adduser命令添加一个普通用户,命令如下: #adduser tommy //添加一个名为tommy的用户 #passwd tommy //修改密码 Changing password for user tommy. New UNIX p ...
分类:系统相关   时间:2021-06-02 19:26:42    阅读次数:0
78676条   上一页 1 ... 24 25 26 27 28 ... 7868 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!