0%

为什么要解释弧度?

1
Math 三角函数中,sin()、cos()、tan() 函数参数使用的都是弧度
1.角度与弧度的定义

当弧长正好等于圆周长的360分之一时,两条射线的夹角的大小为1度.

Read more »

1.continue实现

1
2
3
4
5
6
7
fun foo() {
listOf(1, 2, 3, 4, 5).forEach {
if (it == 3) return@forEach // 局部返回到该 lambda 表达式的调用者,即 forEach 循环
print(it)
}
print(" done with implicit label")
}

此时,return就实现了continue的功能,代码输入1245,不输出3

2.break实现

1
2
3
4
5
6
7
8
9
fun foo() {
run loop@{
listOf(1, 2, 3, 4, 5).forEach {
if (it == 3) return@loop // 从传入 run 的 lambda 表达式非局部返回
print(it)
}
}
print(" done with nested loop")
}

使用run{}将foreach包裹起来,然后局部返回,此时跳出循环,实现了break的功能。代码输出12,不输出345

Read more »

用户协议

_许剑波_(以下简称”我们“)依据本协议为用户(以下简称“你”)提供_极简信用卡管家_服务。本协议对你和我们均具有法律约束力。

一、本服务的功能

你可以使用本服务信用卡账单管理,记录账单日、还款日、逾期提醒。

二、责任范围及限制

你使用本服务得到的结果仅供参考,实际情况以官方为准。

Read more »

隐私政策

更新日期:2022/4/25

生效日期:2022/4/25

导言

极简信用卡管家 是一款由 许剑波 (以下简称”我们“)提供的产品。 您在使用我们的服务时,我们可能会收集和使用您的相关信息。我们希望通过本《隐私政策》向您说明,在使用我们的服务时,我们如何收集、使用、储存和分享这些信息,以及我们为您提供的访问、更新、控制和保护这些信息的方式。 本《隐私政策》与您所使用的 极简信用卡管家 服务息息相关,希望您仔细阅读,在需要时,按照本《隐私政策》的指引,作出您认为适当的选择。本《隐私政策》中涉及的相关技术词汇,我们尽量以简明扼要的表述,并提供进一步说明的链接,以便您的理解。

Read more »

1.分类

  • 传统蓝牙(适合设备间流式传输和通信,比如蓝牙耳机连接)
  • 低功耗蓝牙(BLE bluetooth low energy)

2.基础知识

  • 蓝牙开发4大步骤

    • 设置蓝牙
    • 扫描配对设备或可用设备
    • 连接设备
    • 传输数据
    Read more »

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment