码迷,mamicode.com
首页 >  
搜索关键字:integer to string    ( 107772个结果
mfc判断目录是否为空
BOOL IsFolderEmpty(string path) { string str = path + "\\*.*"; CFileFind ff; BOOL bFound; bFound = ff.FindFile(str.c_str()); while (bFound) { bFound = ...
分类:编程语言   时间:2021-06-19 18:41:36    阅读次数:0
Swift学习-1.基础与函数
主要记录学习swift;学习网址为:https://www.journaldev.com/15163/swift-closure 基础 1.switch-fallthrough Swift中应用switch时,不再需要使用break结束;如果想继续下个判断,可以用fallthrough结尾。 let ...
分类:编程语言   时间:2021-06-18 20:12:06    阅读次数:0
DI依赖注入
DI依赖注入 set方式注入【重点】 依赖注入:set注入 依赖:bean对象的创建依赖于容器 注入:bean对象中的所有属性,由容器来注入 【环境搭建】 1.真实测试对象 2.复杂类型 @Data public class Student { private String name; privat ...
分类:其他好文   时间:2021-06-18 19:53:42    阅读次数:0
Redis | 简介
Redis Redis 简介 Redis 一个开源的,内存中的数据结构存储系统,它可以用作数据库,缓存和消息中间件。 它支持多种类型的数据结构,如 字符串 string 、散列 hashes 、列表 list 、集合 set 、有序集合 zset 和 范围查询,bitmaps 、hyperloglo ...
分类:其他好文   时间:2021-06-18 19:52:49    阅读次数:0
NXOPEN设置属性
void twb_xd_std::set_attr( std::vector<NXOpen::NXObject *> objects , string attr_category, string attr_title , string attr_value ) { NXOpen::Session * ...
分类:其他好文   时间:2021-06-18 19:37:36    阅读次数:0
技巧总结
string新技巧: int a, b; cin >> a >> b; string s = to_string(a + b); ...
分类:其他好文   时间:2021-06-18 19:21:57    阅读次数:0
JUC回顾之-Semaphore底层实现和原理
1.控制并发线程数的Semaphore Semaphore(信号量)是用来控制同时访问特定资源的线程数量,它通过协调各个线程,保证合理的使用公共资源。 线程可以通过acquire()方法来获取信号量的许可,当信号量中没有可用的许可的时候,线程阻塞,直到有可用的许可为止。线程可以通过release() ...
分类:其他好文   时间:2021-06-18 19:20:53    阅读次数:0
515. 在每个树行中找最大值
您需要在二叉树的每一行中找到最大的值。 示例: 输入: 1 / \ 3 2 / \ \ 5 3 9 输出: [1, 3, 9] 解法一:宽度优先搜索 List<Integer> res = new ArrayList<>(); public List<Integer> largestValues(T ...
分类:其他好文   时间:2021-06-18 19:10:47    阅读次数:0
Http请求
using System; using System.Net.Http; using System.Net.Http.Json; using System.Threading.Tasks; namespace ConsoleApp1 { class Program { static async Ta ...
分类:Web程序   时间:2021-06-18 19:08:41    阅读次数:0
mybatis plus分页
1.service层创建分页对象 Page<AreaDTO> pageData = new Page<>(pageIndex,pageSize); String cityIds = configParamService.getConfigValueByCode(PARAM_CODE,GROUP_CO ...
分类:其他好文   时间:2021-06-18 18:54:16    阅读次数:0
107772条   上一页 1 ... 16 17 18 19 20 ... 10778 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!