c++语言应用初体验

简介: c++语言应用初体验
#ifndef SRC_UTILS_H_
#define SRC_UTILS_H_

#include <string>
#include <ctime>

std::string StringTrim(std::string str);
std::string StringLower(std::string str);
std::string toISO8601Time(std::time_t& time);
std::string uriDecode(std::string& str);
std::string uriEncode(std::string& str, bool path=false);
std::string utf8_to_string(const std::string& str);
目录
相关文章
|
3天前
|
存储 编译器 开发工具
C++语言教程分享
C++语言教程分享
|
3天前
|
自然语言处理 编译器 C语言
C++语言入门教程
C++语言入门教程
|
3天前
|
存储 编译器 程序员
C++语言基础学习
C++语言基础学习
|
3天前
|
存储 编译器 程序员
C++语言速成方法
C++语言速成方法
|
3天前
|
存储 编译器 C++
|
3天前
|
存储 Java C#
C++语言模板类对原生指针的封装与模拟
C++|智能指针的智能性和指针性:模板类对原生指针的封装与模拟
|
4天前
|
C++
C++语言的lambda表达式
C++从函数对象到lambda表达式以及操作参数化
|
4天前
|
数据安全/隐私保护 C++
C++语言深入理解类的封装与数据隐藏
深入理解类的封装与数据隐藏
|
5天前
|
关系型数据库 MySQL 测试技术
技术分享:深入C++时间操作函数的应用与实践
技术分享:深入C++时间操作函数的应用与实践
11 1
|
10天前
|
C++
C++的引用定义语法和应用
C++的引用定义语法和应用