mutable ####理解 mutable字面意思是可变的,其实直接定义的local variable都是可变的,所以mutable对于修饰普通的local variable是没有意义的。事实上,编译器会禁止你这么做: #include <iostream> int main() { mutabl ...
分类:
其他好文 时间:
2021-06-16 18:34:32
阅读次数:
0
本随笔结合Docker备忘一下ASP.NET Core项目如何配置分布式Redis缓存 首先Docker中拉取Redis:latest版本镜像; docker pull redis:latest 用拉去的最新镜像创建容器,配置端口映射(默认配置6379) docker run -itd --name ...
分类:
Web程序 时间:
2021-06-16 18:23:10
阅读次数:
0
error: manifest missing or unreadable -- please run init due to i made a mistake by deleting .git of kernel , i need recover it . so i found solution ...
分类:
其他好文 时间:
2021-06-16 18:11:46
阅读次数:
0
问题背景 应用近期计划使用华为AppGallery Connect的崩溃服务,需要接入SDK,但是应用还是Eclipse开发的,集成下来发现SDK的集成和Android Studio还有区别。 根据华为AGC官网资料的描述,需要先下载工具包,通过工具包来生成eclipse的工程包,具体的文档如下: ...
分类:
系统相关 时间:
2021-06-16 18:06:45
阅读次数:
0
#一、linux应用程序基础 ##1.1 应用程序与系统命令的关系 ##1.2 典型应用程序的目录结构 ##1.3 常见的软件包封装类型 #二、RPM软件包管理工具 ##2.1 RPM概述 1.RPM:Red-Hat Package Manager 2.由Red Hat公司提出,被众多Linux发行 ...
分类:
系统相关 时间:
2021-06-16 18:04:54
阅读次数:
0
In my circumstances the error was due to the fact the listener did not have the db's service registered. I solved this by registering the services. Ex ...
分类:
其他好文 时间:
2021-06-16 17:56:58
阅读次数:
0
1. vars vars(objcet) 函数返回对象object的属性和属性值的字典对象 def test(a, b): # {'a': 10, 'b': 20} 常用打印函数的所有入参 print(vars()) return a + b if __name__ == '__main__': t ...
分类:
编程语言 时间:
2021-06-16 17:51:29
阅读次数:
0
蓝牙通信开发流程 为了让两个设备上的两个应用程序之间建立连接,你必须同时实现服务端和客户端机制。 服务端:使用的是 BluetoothServerSocket 类,并且调用的是 listenUsingRfcommWithServiceRecord(string,UUID) 方法来获得一个Blueto ...
分类:
移动开发 时间:
2021-06-16 17:45:58
阅读次数:
0
How to add conda env into jupyter notebook installed by pip ref: https://medium.com/@nrk25693/how-to-add-your-conda-environment-to-your-jupyter-notebo ...
分类:
其他好文 时间:
2021-06-16 17:42:13
阅读次数:
0
一,被调用方 web-test spring: application: name: web-test 二,web-test准备接口 package com.tenyears.webTest.controller; import org.springframework.beans.factory.a ...
分类:
编程语言 时间:
2021-06-16 17:34:00
阅读次数:
0