码迷,mamicode.com
首页 > 其他好文 > 详细

string

时间:2020-10-18 10:09:18      阅读:18      评论:0      收藏:0      [点我收藏+]

标签:const   col   clu   color   class   ++   let   new   Once   

 1 #pragma once
 2 #include <initializer_list>
 3 struct String {
 4     String(const char*s) {
 5         c_str = new char[strlen(s)+1];
 6         while (*s) {
 7             *(c_str+sz) = *s++;
 8             sz++;
 9         }
10         *(c_str + sz) = \0;
11     }
12     ~String() { delete c_str; }
13     size_t size() { return sz; }
14     const char charAt(){}
15 private:
16     size_t sz = 0;
17     char* c_str;
18 };

 

string

标签:const   col   clu   color   class   ++   let   new   Once   

原文地址:https://www.cnblogs.com/otakus/p/13832502.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!