【C++ 自写String】

CString.hpp

#include <iostream>
#include <string.h>#pragma warning(disable:4996)
using namespace std;class CString {
private:int len;char* data;public:CString():data(nullptr),len(0) {cout << "0空构造\n";}CString(const char* _data) {if (!_data) {len = 0;data = new char(1);*data = '\0';cout << "1空构造\n";}else {len = (int)strlen(_data);data = new char[strlen(_data) + 1];memset(data, 0, len + 1);strcpy(data, _data);cout << "char*构造\n";}}const char* getValue() const {return data;}int getLength() const{return len;}CString (const CString& str){len = str.getLength();data = new char[len+1];memset(data, 0, len + 1);strcpy(data, str.getValue());cout << "str构造\n";}CString& operator=(const CString & str){if (this == &str) {return *this;}len = str.getLength();delete[] data;data = new char[len + 1];strcpy(data, str.getValue());return *this;}CString operator+(const CString &str) const{CString nstr;nstr.len = this->len + str.getLength();nstr.data = new char[nstr.len + 1];strcpy(nstr.data, (*this).data);strcat(nstr.data, str.getValue());return nstr;}~CString() {delete[] data;}};class String {
private:char* data; // 存储字符数组的指针
public:String(const char* str = "") : data(new char[strlen(str) + 1]) {strcpy(data, str);}~String() {delete[] data;}const char* getData() const {return data;}
};

Shape.hpp

#include<iostream>class Shape {
public:virtual double printArea() = 0;
};class Circle :public Shape {
private:double r;
public:Circle(double _r) { r = _r; }virtual double printArea() {return r * r * 3.14159;}
};class Rectangle :public Shape {
private:double w, h;
public:Rectangle(double _w, double _h) { w = _w; h = _h; }virtual double printArea() {return w * h;}
};class Triangle :public Shape {
private:double w, h;
public:Triangle(double _w, double _h){w = _w;h = _h;}virtual double printArea() {return w * h /2;}
};

cmain.cpp

#include "CString.hpp"
#include "Shape.hpp"
#include <vector>int main() 
{
#if 1CString s1("123");CString s2(s1);CString s3 = s1 + s2;CString s4;s4 = s3;cout << s4.getLength() << "," << s4.getValue() << endl;vector<Shape*> ss;Shape* c = new Circle(2.1);Shape* r = new Rectangle(4, 5);Shape* t = new Triangle(4,2);ss.push_back(c);ss.push_back(r);ss.push_back(t);for (auto v = ss.begin(); v != ss.end(); v ++) {cout<< "area:" << (*v)->printArea() << endl;Shape* ptr = *v;delete ptr;ptr = nullptr;}ss.erase(ss.begin(), ss.end());
#endifreturn 0;
}

在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/644988.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

计算机服务器中了mallox勒索病毒解密方案计划,勒索病毒解密措施

计算机技术的不断应用与发展&#xff0c;为企业的生产运营提供了有利条件&#xff0c;但网络安全威胁无处不在。近期&#xff0c;广西某生物制药企业的计算机服务器遭到了mallox勒索病毒攻击&#xff0c;导致企业的计算机所有重要数据被加密&#xff0c;严重影响企业的生产运营…

【jetson笔记】torchaudio报错

原因是因为pip安装的包与jetson不兼容导致 自己安装或者cmake编译也会报错 需要拉取官方配置好的docker镜像 拉取docker镜像 具体容器可以看官网&#xff0c;按照自己需求拉取即可 https://catalog.ngc.nvidia.com/orgs/nvidia/containers/l4t-ml 如果其他包不需要只需要torc…

2024区块链应用最趋势,RWA实物资产化

作者 张群&#xff08;赛联区块链教育首席讲师&#xff0c;工信部赛迪特聘资深专家&#xff0c;CSDN认证业界专家&#xff0c;微软认证专家&#xff0c;多家企业区块链产品顾问&#xff09;关注张群&#xff0c;为您提供一站式区块链技术和方案咨询。 实物资产通证化&#xff0…

pyspark学习_dataframe常用操作_01

1. 创建DataFrame 本文使用DataFrame通过读取json文件获取数据&#xff0c;代码如下: from pyspark.sql import SparkSessionspark SparkSeesion.builder.getOrCreate() #创建sparkSession peopleDF spark.read.format("json").load("people.json") &qu…

day01 二分,移除元素

题目链接&#xff1a;leetcode704-二分查找, leetcode27-移除元素 二分 注意事项&#xff1a;开闭区间 如果右闭&#xff0c;则rightlen(nums)-1, for left < right {}, rightmid-1 如果右开&#xff0c;则rightlen(nums),  for left < right {},  rightmid Go 左开…

Conda python运行的包和环境管理 入门

Conda系列&#xff1a; 翻译: Anaconda 与 miniconda的区别Miniconda介绍以及安装 Conda 是一个功能强大的命令行工具&#xff0c;用于在 Windows、macOS 和 Linux 上运行的包和环境管理。 本 conda 入门指南介绍了启动和使用 conda 创建环境和安装包的基础知识。 1. 准备…

解决Android Studio gradle下载超时和缓慢问题(win10)

解决超时问题 一般配置阿里云代理就可以解决。 具体配置方法&#xff0c;参考&#xff1a;https://blog.csdn.net/zhangjin1120/article/details/121739782 解决下载缓慢问题 直接去腾讯云镜像下载&#xff1a; https://mirrors.cloud.tencent.com/gradle/ 下载好了之后&…

三、安全工程—物理安全(CISSP)

目录 1.物理安全概述 2.物理安全计划 2.1 物理安全计划—考虑因素 2.2 物理安全—计划大纲

Spring 的 IOC 和 AOP

题目 Spring 的 IOC 和 AOP 推荐解析 IOC 是什么&#xff1f; IoC&#xff08;Inversion of Control&#xff09; 控制反转&#xff0c;是一种常见的设计思想&#xff0c;主要就是将手动创建对象的控制权&#xff0c;交给 Spring 框架来管理。 为什么需要存在一个容器&…

SpringCloud Alibaba Sentinel 与 SpringCloud Gateway 的限流有什么差别?(三种限流算法原理分析)

目录 一、Sentinel 与 Gateway 的限流有什么差别&#xff1f; 1.1、前置知识 - 四种常见的限流算法 1.1.1、Tips 1.1.2、计数器算法 1&#xff09;固定窗口计数器算法 2&#xff09;滑动窗口计数器算法 1.1.3、令牌桶算法 1.1.4、漏桶算法 1.2、解决问题 一、Sentinel…

Qt Designer教程

文章目录 创建一个 ui 文件选择控件Qt Designer基本控件介绍1、Layouts1.1、Layouts 布局1.2、参数配置 2、Spacers2.1、 Spacers 弹簧介绍2.2、 参数设置 3、Buttons 按键3.1、 Buttons 按键分类 4、Item Views&#xff08;Model-Based&#xff09; 项目视图(基于模型)4.1、 B…

12.for 条件循环语句 (3)

for 循环语句 允许脚本一次性读取多个信息&#xff0c;然后逐一对信息进行操作处理。当要处理的数据有范围时&#xff0c;使用for循环语句。 使用 for 循环语句从列表文件中读取多个用户名&#xff0c;然后为其逐一创建用户账户并设 置密码。首先创建用户名称的列表文件users.…

android studio从空白开始

对我来说&#xff0c;真正的第一步是清理电脑C盘。从剩余8G清理到25G&#xff0c;把原来看不顺眼又不敢删的文件夹和软件全删了&#xff0c;删爽了的后果就是&#xff0c;用两天的时间在把一些环境配置慢慢装回来&#xff0c;node.js&#xff0c;jdk&#xff0c;npm。努力把它们…

密码学中的承诺原语(Commitment Scheme)

1背景介绍 让我们考虑以下情况&#xff1a;Alice在佳士得&#xff08;Christies&#xff09;购买Banksy的最后一件杰作&#xff0c;在这之前&#xff0c;她会确保艺术品在售出后不会被销毁。 佳士得选择了维克里封闭竞标的拍卖方式&#xff0c;这是一种相当常见的做法&#x…

消息队列面试系列-01

1. 什么是消息队列&#xff1f; MQ全称为Message Queue 消息队列&#xff08;MQ&#xff09;是一种应用程序对应用程序的通信方法。 消息队列中间件是分布式系统中重要的组件&#xff0c;主要解决应用耦合&#xff0c;异步消息&#xff0c;流量削锋等问题。实现高性能&#x…

Vue+Element(el-upload+el-form的使用)+springboot

目录 1、编写模板 2、发请求调接口 3、后端返回数据 1.编写实体类 2.Controller类 3、interface接口&#xff08;Service层接口&#xff09; 4.Service&#xff08;接口实现&#xff09; 5、interface接口&#xff08;Mapper层接口&#xff09; 6、xml 4、upload相关参…

前端 防止浏览器提示记住密码以及自动填充密码

当前端 <input /> 的 type’password‘ 时&#xff0c;浏览器为了优化用户体验&#xff0c;会在表单提交后提示用户记住密码 如果不想要这样的行为&#xff0c;最简单的当然是提示用户自己在浏览器设置中进行相关配置 如果希望在代码层面阻止浏览器提示是否记住密码或者…

.git 文件夹结构解析

.git 文件夹结构解析 在这篇文章就让我们来看看这个 Git 仓库里的文件分别都是用来干什么的&#xff0c;以及在执行了相关的 Git 命令后这些文件会如何响应。 hooks&#xff08;钩&#xff09;&#xff1a;存放一些shell脚本info&#xff1a;存放仓库的一些信息logs&#xff…

【git】配置代理访问github

参考大神的方法 没有解决。GitHub访问加速 简直完美&#xff01; github经常Couldn’t connect to server zhangbinDESKTOP-1723CM1 MINGW64 /g/CDN/NET-EQ-DEV $ git clone https://github.com/TaoistKing/AudioPlc.git Cloning into AudioPlc... fatal: unable to access h…

ChromeDriver谷歌驱动最新版安装120/121/122

chromeDriver最新版本下载 最新驱动 https://googlechromelabs.github.io/chrome-for-testing/参考&#xff1a; https://blog.csdn.net/m0_57382185/article/details/134007615