码迷,mamicode.com
首页 >  
搜索关键字:reference    ( 5445个结果
深度阅读:深入 C++ 内存管理(万字长文)
引言 说到 C++ 的内存管理,我们可能会想到栈空间的本地变量、堆上通过 new 动态分配的变量以及全局命名空间的变量等,这些变量的分配位置都是由系统来控制管理的,而调用者只需要考虑变量的生命周期相关内容即可,而无需关心变量的具体布局。这对于普通软件的开发已经足够,但对于引擎开发而言,我们必须对内存 ...
分类:编程语言   时间:2021-01-15 12:06:28    阅读次数:0
istio sidecar流量处理机制及配置
sidecar 介绍 在istio的流量管理等功能,都需要通过下发的配置应用到应用运行环境执行后生效,负责执行配置规则的组件在service mesh中承载应用代理的实体被称为side-car Istio对流量策略管理等功能无须对应用程序做变动, 这种对应用服务完全非侵入的方式完全依赖于Side-c ...
分类:其他好文   时间:2021-01-11 11:27:22    阅读次数:0
SpringBoot 外部配置
本篇文章主要介绍SpringBoot 配置相关内容。如果文章中有错误或不明确的地方,请大家望指正,谢谢! https://docs.spring.io/spring-boot/docs/2.3.7.RELEASE/reference/html/spring-boot-features.html#bo ...
分类:编程语言   时间:2021-01-08 10:51:04    阅读次数:0
C# 运算符集
引用:https://docs.microsoft.com/zh-cn/dotnet/csharp/language-reference/operators/bitwise-and-shift-operators#left-shift-operator- ...
分类:Windows程序   时间:2021-01-07 12:29:53    阅读次数:0
续—Django+小程序实现删除图片功能
还是在图片上传功能的基础上完成删除图片功能,跟下载图片功能都差不多,具体操作如下 第一步:还是在backup.js中添加删除图片功能,具体如下: // 删除图片 deleteBackup: function(imgItem){ wx.request({ url: imageUrl + '?md5=' ...
分类:微信   时间:2021-01-06 12:13:21    阅读次数:0
1379. Find a Corresponding Node of a Binary Tree in a Clone of That Tree (M)
Find a Corresponding Node of a Binary Tree in a Clone of That Tree (M) 题目 Given two binary trees original and cloned and given a reference to a node t ...
分类:其他好文   时间:2021-01-06 11:39:40    阅读次数:0
强引用、软引用、弱引用、虚引用——4中引用的理解
1.强引用(Reference):默认使用的就是强引用,不会被GC,即使报OOM也不会被GC Object o = new Object();//默认就是强引用,一般使用这种 2.软引用(SoftReference):当内存不够时,才能被GC回收,内存足够是不会被回收 3.弱引用(WeakRefer ...
分类:其他好文   时间:2021-01-05 11:09:07    阅读次数:0
Java8 forEach 使用
1. forEach and Map普通方式遍历 Map Map<String, Integer> items = new HashMap<>(); items.put("A", 10); items.put("B", 20); items.put("C", 30); items.put("D", ...
分类:编程语言   时间:2021-01-05 10:40:24    阅读次数:0
How Arc works in Rust
The Atomic Reference Counter (Arc) type is a smart pointer that lets you share immutable data across threads in a thread-safe way. I couldn’t find any ...
分类:其他好文   时间:2021-01-01 12:32:52    阅读次数:0
Arduino ESP32 发送HTTP请求
参考:https://www.qutaojiao.com/8043.html ESP8266的HTTP请求:http://www.taichi-maker.com/homepage/iot-development/iot-dev-reference/esp8266-c-plus-plus-refer ...
分类:Web程序   时间:2020-12-31 12:49:50    阅读次数:0
5445条   上一页 1 ... 6 7 8 9 10 ... 545 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!