最新 最热

TS STRUCTURE - Interfaces

An interface is a declaration that is similar to a class but does not have a method implementation. You can use it to describe the properties and methods of obj...

2023-05-17
1

Key Concepts of TS - CLASSES

Inheritance is another paradigm that is one of the cornerstones of object-oriented programming.Inheritance means that an object uses another object as its base ...

2023-05-17
1

TypeScript 类型体操 - 进阶

映射类型的语法用于构造新的索引类型,在构造的过程中可以对索引和值做一些修改或过滤。

2023-05-17
1

JS 手写: Ajax

# 思路创建 XMLHttpRequest 实例发出 HTTP 请求服务器返回 XML 格式的字符串JS 解析 XML 字符串随着历史推进,XML 已经被淘汰,取而代之的是 JSON# 版本 1function ajax () { const xhr = new XMLHttpRequest(); ......

2023-05-17
1

SpringBoot学习篇|Yaml配置文件属性注入

SpringBoot学习篇|Yaml配置文件属性注入/resources/application.properties可以配置哪些内容呢?参考: 官方配置文档application.proper

2023-05-17
1

Map<Integer,Value>放入缓存后取出来变成了Map<String,Value>

将一个类型为Map<Integer, String>的一个Map对象放到redis中后,再次取出来时。当我们想便利Map.entrySet()获取每个Entry中的Key,如执行Integer key = entry.getKey();...

2023-05-12
1

APP版本更新中比较APP的版本号高低并返回最高版本

App检查更新功能,每次进行功能迭代准备上线时,在后台配置一个新的版本号并上传最新的apk,然后在App点击检查更新时返回最新的版本号。

2023-05-12
1

Mysql插入emoji表情报错java.sql.SQLException: Incorrect string value: 'xF0x9Fx90xB8'

背景今天遇到一个Mysql插入用户信息时报错的问题,报错信息如下java.sql.SQLException: Incorrect string value: &#x27;xF0x9Fx90xB8&#x27; for column &#x27;userName&#x27; at row 1原因原因是用户的userName这...

2023-05-12
1

批量任务体现多线程的威力!

对于多线程的理解不是非常深刻,工作中用到多线程代码的机会也不多,前不久遇到了一个使用场景,通过编码实现后对于多线程的理解和应用有了更加深刻的理解。场景如下:现有给用户发送产品调研的需求,运营的同事拿来了一个Exce...

2023-05-12
1

极光推送的代码实现

推送多环境配置见:http://www.cnblogs.com/lingyejun/p/7943779.html

2023-05-12
1