码迷,mamicode.com
首页 >  
搜索关键字:c++ string 深拷贝(传统写法+现代写法)    ( 95377个结果
C#——String类
string类型 构造函数 public string(char[] value) public string(char[] value,int offset,int count) 拼接字符串: + or += 比较字符串 public static int Compare(string strA, ...
分类:Windows程序   时间:2021-06-19 19:07:02    阅读次数:0
遍历part表达式,UF_MODL_ask_exps_of_part
//遍历part表达式 void twb_xd_std::cycle_part_exp( tag_t part_tag, std::vector<string> &part_exp ) { try { int number_of_exps = 0;//表达式数量 tag_t * exps ; UF_ ...
分类:其他好文   时间:2021-06-19 19:03:00    阅读次数:0
7 Redis部署
redis学习 五大数据类型,开发必会的技能 老师的博客 https://www.cnblogs.com/pyyu/p/9467279.html string,字符串类型 hash,哈希类型,如同python的dict Set,无序集合 Zset,有序集合 List,双向队列,向左插入数据,向右插入 ...
分类:其他好文   时间:2021-06-19 18:53:25    阅读次数:0
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
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
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
95377条   上一页 1 ... 14 15 16 17 18 ... 9538 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!