vector的实现(c++)

news2025/1/4 19:13:56

 前言

        vector是很重要的数据结构,所以了解它的底层的核心原理是很有必要的,如何了解它的底层原理呢?除了阅读原码外,自己实现一下vector的核心逻辑也是不错的选择。

目录

1.四个默认成员函数

2.迭代器的实现

3.增删查改

4. 容量相关

 5.完整代码

6.测试相关 

7.memcpy深浅拷贝问题 


1.四个默认成员函数

//构造函数
		vector()
			:_start(nullptr)
			, _finish(nullptr)
			, _endOfStorage(nullptr)
		{

		}
		vector(size_t n, const T& val)
			:_start(new T[n])
			, _finish(_start + n)
			, _endOfStorage(_start + n)
		{
			for (int i = 0; i < n; i++)
			{
				_start[i] = val;
			}
		}
		//防止上面的在调用的时候被解析为迭代器区间的调用
		vector(int n, const T& val)
			:_start(new T[n])
			, _finish(_start + n)
			, _endOfStorage(_start + n)
		{
			for (int i = 0; i < n; i++)
			{
				_start[i] = val;
			}
		}
		//使用迭代器构造
		template <typename InputIterator>//使用模板函数便于支持各种类型的迭代器
		vector(InputIterator first,InputIterator last)
		{
			while (first != last)
			{
				push_back(*first);
				++first;
			}
		}
		//拷贝构造
		/*vector(const vector<T>& x)
			:_start(new T[x.capacity()])
		{
			for (size_t i = 0; i < (int)x.size(); i++)
			{
				_start[i] = x[i];
			}
			_finish = _start+(x.size());
			_endOfStorage = _start + (x.capacity());
		}*/
		//简洁写法
		vector(const vector<T>& x)
			:_start(nullptr)
			,_finish(nullptr)
			,_endOfStorage(nullptr)
		{
			reserse(x.capacity());//提前开辟空间
			size_t i = 0;
			for (i = 0; i < x.size(); ++i)
			{
				push_back(x[i]);//拷贝数据
			}
		}
		//vector<T> operator=(const vector<T>& x)//默认成员函数
		//{
		//	T* tmp = new T[x.capacity()];//开新空间
		//	for (size_t i = 0; i < (int)x.size(); i++)//拷贝数据
		//	{
		//		//memcpy(tmp, _start, sizeof(T) * x.capacity();
		//		tmp[i] = x._start[i];
		//	}
		//	delete[]_start;
		//	_start = tmp;
		//	_finish = _start + (x.size());
		//	_endOfStorage = _start + (x.capacity());
		//	return *this;//为了支持连等
		//}
		//现代写法
		void swap(vector<T>& x)//交换函数
		{
			::swap(_start,x._start);//调用全局的swap函数
			::swap(_finish, x._finish);
			::swap(_endOfStorage, x._endOfStorage);
		}
		vector<T> operator=(vector<T> x)//默认成员函数
		{
			swap(x);
			return *this;
		}
		const vector<T> operator=(const vector<T>& x)const	//const类型
		{
			T* tmp = new T[x.capacity()];//开新空间
			for (int i = 0; i < (int)x.size(); i++)//拷贝数据
			{
				tmp[i] = x._start[i];
			}
			delete[]_start;
			_start = tmp;
			_finish = _start + (x.size());
			_endOfStorage = _start + (x.capacity());
			return *this;//为了支持连等
		}
		//析构
		~vector()
		{
			delete[]_start;//释放空间
			_start = _finish = _endOfStorage = nullptr;//指针置空
		}

 

2.迭代器的实现

        typedef T* iterator;//vector的迭代器是原生指针
		typedef const T* const_iterator;
        //迭代器
		iterator& begin()
		{
			return _start;
		}
		const_iterator& begin()const //const类型的迭代器
		{
			return _start;
		}
		iterator& end()
		{
			return _finish;
		}
		const_iterator& end()const
		{
			return _finish;
		}

 

3.增删查改

        T& front()//返回第一个元素
		{
			assert(_start);
			return *_start;
		}
		T& back()//返回末尾的元素
		{
			assert(_finish-1);
			return *(_finish-1);
		}
        	//尾插
		void push_back(const T& val)
		{
			//if (_finish == _endOfStorage)//增容
			//{
			//	int n = 0;
			//	if (capacity() == 0)
			//		n = 2;
			//	else
			//		n=capacity() * 2;
			//	reserse(n);
			//	_endOfStorage = _start + n;
			//}
			//_start[size()] = val;//插入数据
			//++_finish;
			insert(end(), val);//复用insert
		}
		//尾删
		void pop_back()
		{
			assert(size());
			/*--_finish;*/
			erase(end()-1);//复用erase
		}

		iterator insert(iterator pox, const T& data)//pox位置的插入
		{
			//检查位置是否合法
			assert(pox >= _start);
			assert(pox <= _finish);
			//检查是否需要增容
			if (_finish == _endOfStorage)
			{
				size_t longs = size();
				size_t poxN = pox - _start;
				if (longs == 0)
					longs = 2;
				reserse(2 * longs);
				pox = _start + poxN;
			}
			iterator end = _finish -1;
			while (end >= pox)//挪动数据
			{
				*(end + 1) = *end;
				--end;
			}
			*pox = data;//插入数据
			++_finish;
			return pox + 1;
		}
		iterator erase(iterator pox)//pox位置的删除
		{
			assert(pox >= _start);
			assert(pox < _finish);
			iterator pox1 = pox;
			//挪动数据
			while (pox1<_finish)
			{
				*pox1 = *(pox1 + 1);
				++pox1;
			}
			--_finish;
			return pox;
		}

 

4. 容量相关

	    //容量相关的操作
		size_t size()const//这样const和非const对象就都可以调用了。
		{
			return _finish - _start;
		}
		size_t capacity()const//这样const和非const对象就都可以调用了。
		{
			return _endOfStorage - _start;
		}
		bool empty()//是否为空
		{
			return _finish == _start;
		}
		bool empty()const//是否为空
		{
			return _finish == _start;
		}
        void reserse(int n)//改变空间的大小
		{
			if (n > (int)capacity())//增容
			{
				
				size_t oldSize = size();//保存size的值
				T* tmp = new T[n];//开辟新空间
				if (_start)//防止指针为空
				{
					//拷贝数据
					//
					for (int i = 0; i < (int)oldSize; i++)
					{
						tmp[i] = _start[i];
					}
					delete[]_start;//释放旧空间
				}
				_start = tmp;
				_finish =_start + oldSize;
				_endOfStorage = _start + n;
			}
		}
		void resize(int n, const T& value=T())
		{
			if (n < (int)size())//只需要改变size的大小
			{
				_finish = _start + n;
			}
			else
			{
				if (n <= (int)capacity())//不用扩容直接插入value
				{
					while (_finish != _endOfStorage)//
					{
						*(_finish) = value;
						++_finish;
					}
				}
				else//扩容
				{
					size_t oldSize = size();
					T* tmp = new T[n];//开新空间,拷贝数据
					for (size_t i = 0; i < size(); i++)
					{
						tmp[i] = _start[i];
					}
					delete[]_start;
					_start = tmp;
					_finish = _start + oldSize;
					_endOfStorage = _start + n;
					while (_finish != _endOfStorage)//插入value值
					{
						*(_finish) = value;
						++_finish;
					}
				}
			}
		}

 5.完整代码

#pragma once
#include<string.h>
#include<iostream>
#include<assert.h>
#include<string.h>
using namespace std;
namespace qyy
{
	template <class T>
	class vector
	{
	public:
		typedef T* iterator;//vector的迭代器是原生指针
		typedef const T* const_iterator;
		//构造函数
		vector()
			:_start(nullptr)
			, _finish(nullptr)
			, _endOfStorage(nullptr)
		{

		}
		vector(size_t n, const T& val)
			:_start(new T[n])
			, _finish(_start + n)
			, _endOfStorage(_start + n)
		{
			for (int i = 0; i < n; i++)
			{
				_start[i] = val;
			}
		}
		//防止上面的在调用的时候被解析为迭代器区间的调用
		vector(int n, const T& val)
			:_start(new T[n])
			, _finish(_start + n)
			, _endOfStorage(_start + n)
		{
			for (int i = 0; i < n; i++)
			{
				_start[i] = val;
			}
		}
		//使用迭代器构造
		template <typename InputIterator>//使用模板函数便于支持各种类型的迭代器
		vector(InputIterator first,InputIterator last)
		{
			while (first != last)
			{
				push_back(*first);//调用push_back填入数据
				++first;
			}
		}
		//拷贝构造
		/*vector(const vector<T>& x)
			:_start(new T[x.capacity()])
		{
			for (size_t i = 0; i < (int)x.size(); i++)
			{
				_start[i] = x[i];
			}
			_finish = _start+(x.size());
			_endOfStorage = _start + (x.capacity());
		}*/
		//简洁写法
		vector(const vector<T>& x)
			:_start(nullptr)
			,_finish(nullptr)
			,_endOfStorage(nullptr)
		{
			reserse(x.capacity());//提前开辟空间
			size_t i = 0;
			for (i = 0; i < x.size(); ++i)
			{
				push_back(x[i]);//拷贝数据
			}
		}
		//vector<T> operator=(const vector<T>& x)//默认成员函数
		//{
		//	T* tmp = new T[x.capacity()];//开新空间
		//	for (size_t i = 0; i < (int)x.size(); i++)//拷贝数据
		//	{
		//		//memcpy(tmp, _start, sizeof(T) * x.capacity();
		//		tmp[i] = x._start[i];
		//	}
		//	delete[]_start;
		//	_start = tmp;
		//	_finish = _start + (x.size());
		//	_endOfStorage = _start + (x.capacity());
		//	return *this;//为了支持连等
		//}
		//现代写法
		void swap(vector<T>& x)//交换函数
		{
			::swap(_start,x._start);//调用全局的swap函数
			::swap(_finish, x._finish);
			::swap(_endOfStorage, x._endOfStorage);
		}
		vector<T> operator=(vector<T> x)//默认成员函数
		{
			swap(x);
			return *this;
		}
		const vector<T> operator=(const vector<T>& x)const	//const类型
		{
			T* tmp = new T[x.capacity()];//开新空间
			for (int i = 0; i < (int)x.size(); i++)//拷贝数据
			{
				tmp[i] = x._start[i];
			}
			delete[]_start;
			_start = tmp;
			_finish = _start + (x.size());
			_endOfStorage = _start + (x.capacity());
			return *this;//为了支持连等
		}
		//析构
		~vector()
		{
			delete[]_start;//释放空间
			_start = _finish = _endOfStorage = nullptr;//指针置空
		}
		//迭代器
		iterator& begin()
		{
			return _start;
		}
		const_iterator& begin()const //const类型的迭代器
		{
			return _start;
		}
		iterator& end()
		{
			return _finish;
		}
		const_iterator& end()const
		{
			return _finish;
		}
		
		void reserse(int n)//改变空间的大小
		{
			if (n > (int)capacity())//增容
			{
				
				size_t oldSize = size();//保存size的值
				T* tmp = new T[n];//开辟新空间
				if (_start)//防止指针为空
				{
					//拷贝数据
					//
					for (int i = 0; i < (int)oldSize; i++)
					{
						tmp[i] = _start[i];
					}
					delete[]_start;//释放旧空间
				}
				_start = tmp;
				_finish =_start + oldSize;
				_endOfStorage = _start + n;
			}
		}
		void resize(int n, const T& value=T())
		{
			if (n < (int)size())//只需要改变size的大小
			{
				_finish = _start + n;
			}
			else
			{
				if (n <= (int)capacity())//不用扩容直接插入value
				{
					while (_finish != _endOfStorage)//
					{
						*(_finish) = value;
						++_finish;
					}
				}
				else//扩容
				{
					size_t oldSize = size();
					T* tmp = new T[n];//开新空间,拷贝数据
					for (size_t i = 0; i < size(); i++)
					{
						tmp[i] = _start[i];
					}
					delete[]_start;
					_start = tmp;
					_finish = _start + oldSize;
					_endOfStorage = _start + n;
					while (_finish != _endOfStorage)//插入value值
					{
						*(_finish) = value;
						++_finish;
					}
				}
			}
		}

		T& operator[](size_t x)//元素访问
		{
			assert(x < size());
			return *(_start + x);
		}
		const T& operator[](size_t x)const//用于const成员调用
		{
			assert(x < size());
			return *(_start + x);
		}
	
		//尾插
		void push_back(const T& val)
		{
			//if (_finish == _endOfStorage)//增容
			//{
			//	int n = 0;
			//	if (capacity() == 0)
			//		n = 2;
			//	else
			//		n=capacity() * 2;
			//	reserse(n);
			//	_endOfStorage = _start + n;
			//}
			//_start[size()] = val;//插入数据
			//++_finish;
			insert(end(), val);//复用insert
		}
		//尾删
		void pop_back()
		{
			assert(size());
			/*--_finish;*/
			erase(end()-1);//复用erase
		}

		iterator insert(iterator pox, const T& data)//pox位置的插入
		{
			//检查位置是否合法
			assert(pox >= _start);
			assert(pox <= _finish);
			//检查是否需要增容
			if (_finish == _endOfStorage)
			{
				size_t longs = size();
				size_t poxN = pox - _start;
				if (longs == 0)
					longs = 2;
				reserse(2 * longs);
				pox = _start + poxN;
			}
			iterator end = _finish -1;
			while (end >= pox)//挪动数据
			{
				*(end + 1) = *end;
				--end;
			}
			*pox = data;//插入数据
			++_finish;
			return pox + 1;
		}
		iterator erase(iterator pox)//pox位置的删除
		{
			assert(pox >= _start);
			assert(pox < _finish);
			iterator pox1 = pox;
			//挪动数据
			while (pox1<_finish)
			{
				*pox1 = *(pox1 + 1);
				++pox1;
			}
			--_finish;
			return pox;
		}
		//容量相关的操作
		size_t size()const//这样const和非const对象就都可以调用了。
		{
			return _finish - _start;
		}
		size_t capacity()const//这样const和非const对象就都可以调用了。
		{
			return _endOfStorage - _start;
		}
		bool empty()//是否为空
		{
			return _finish == _start;
		}
		bool empty()const//是否为空
		{
			return _finish == _start;
		}
		T& front()//返回第一个元素
		{
			assert(_start);
			return *_start;
		}
		T& back()//返回末尾的元素
		{
			assert(_finish-1);
			return *(_finish-1);
		}
	private:
		iterator _start;
		iterator _finish;
		iterator _endOfStorage;
	};
}

6.测试相关 

#define _CRT_SECURE_NO_WARNINGS 1
#include"vector.h"
void testVector1()
{
	qyy::vector<int> v1;
	qyy::vector<int> v2(5, 2);
	qyy::vector<int> v3(v2);
	v2 = v3;
	v1.push_back(1);
	v1.push_back(2);
	v1.push_back(3);
	v1.push_back(4);
	v1.push_back(5);
	v1.pop_back();
	
}
void testVector2()
{
	qyy::vector<int> v1;
	qyy::vector<int> v2(10, 5);

	int array[] = { 1,2,3,4,5 };
	qyy::vector<int> v3(array, array + sizeof(array) / sizeof(array[0]));

	qyy::vector<int> v4(v3);

	for (size_t i = 0; i < v2.size(); ++i)
	{
		cout << v2[i] << " ";
	}
	cout << endl;

	auto it = v3.begin();
	while (it != v3.end())
	{
		cout << *it << " ";
		++it;
	}
	cout << endl;

	for (auto e : v4)
	{
		cout << e << " ";
	}
	cout << endl;
}

void testVector3()
{
	qyy::vector<int> v;
	v.push_back(1);
	v.push_back(2);
	v.push_back(3);
	v.push_back(4);
	v.push_back(5);
	v.resize(12,3);
	cout << v.size() << endl;
	cout << v.capacity() << endl;
	cout << v.front() << endl;
	cout << v.back() << endl;
	cout << v[0] << endl;
	for (auto e : v)
	{
		cout << e << " ";
	}
	cout << endl;

	v.pop_back();
	v.pop_back();
	for (auto e : v)
	{
		cout << e << " ";
	}
	cout << endl;

	v.insert(v.begin(), 0);
	for (auto e : v)
	{
		cout << e << " ";
	}
	cout << endl;

	v.erase(v.begin() + 1);
	for (auto e : v)
	{
		cout << e << " ";
	}
	cout << endl;
	qyy::vector<string> v2;
	v2.push_back("1111111");
	v2.push_back("2222222");
	v2.push_back("3333333");
	v2.push_back("4444444");
	v2.push_back("5555555");
	for (auto& e : v2)
		cout << e<<"   ";
}
int main()
{
	//testVector();
	testVector2();

	testVector3();
	int i = int();//c++支持内置类型像自定义类型一样调用匿名的构造函数
	double f = double();
	return 0;
}

7.memcpy深浅拷贝问题 

        如果我们的reserse函数是以下面这种方式实现的:

      void reserse(int n)//改变空间的大小
		{
			if (n > (int)capacity())//增容
			{
				
				size_t oldSize = size();//保存size的值
				T* tmp = new T[n];//开辟新空间
				if (_start)//防止指针为空
				{
					//拷贝数据
					memcpy(tmp,_start,sizof(T)*n)
					delete[]_start;//释放旧空间
				}
				_start = tmp;
				_finish =_start + oldSize;
				_endOfStorage = _start + n;
			}
		}

         其他地方都没有改变,运行我们的测试代码,程序就会奔溃,因为此时在testVector3函数中,使用了自定义类型string来实例化vector。所以在v2中存储的是string对象,而memcpy只能完成浅拷贝,扩容后只是将v2成员指针指向旧空间的string对象,没有为v2中指针指向的string对象开辟新的空间,此时delete []_start;释放旧空间,就会使得v2成员指向的string对象的空间失效,再进行其他操作程序就会奔溃(此时v2中成员指向的空间已经被操作系统回收)。

         如图:

        正确的操作是扩容以后调用自定义类型的深拷贝函数,也就是operator=。如下:

        void reserse(int n)//改变空间的大小
		{
			if (n > (int)capacity())//增容
			{
				
				size_t oldSize = size();//保存size的值
				T* tmp = new T[n];//开辟新空间
				if (_start)//防止指针为空
				{
					//拷贝数据
					for (int i = 0; i < (int)oldSize; i++)
					{
						tmp[i] = _start[i];//调用string的深拷贝函数
					}
					delete[]_start;//释放旧空间
				}
				_start = tmp;
				_finish =_start + oldSize;
				_endOfStorage = _start + n;
			}
		}

 

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

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

相关文章

栈踩踏实验

程序的存储结构 分布 在磁盘和内存中的分布如下&#xff1a; 节视图 .data&#xff1a;已经初始化的全局变量/局部静态变量 .bss&#xff1a;未初始化的全局变量/局部静态变量 .got.plt&#xff1a;全局偏移量表&#xff0c;保存全局变量引用的地址 .rodata&#xff1a;只读…

2023 Idea 热部署 JRebel 插件激活方法

2023 Idea 热部署 JRebel 插件激活方法 1. 下载源代码 进入下面 github 地址 clone 代码到本地 https://github.com/Byron4j/JrebelLicenseServerforJava 2. 编译和打包 cd /Users/daixiaohu/Desktop/JrebelLicenseServerforJavamvn clean package3. 运行项目 cd target/jav…

前端项目搭建以及项目配置

前端项目搭建 - vitevue3.0ant vite比起webpack速度更快 vite搭建项目 https://cn.vitejs.dev/ 步骤&#xff1a; 1.打开cmd 2.找到项目应该建的文件夹 比如直接建到桌面上 cd desktop3.创建项目 使用创建项目命令&#xff0c;然后根据提示填写项目名称&#xff0c;以及要…

计算机视觉基础:锚框

锚框 目标检测算法通常会在输入图像中采样大量的区域&#xff0c;然后判断这些区域中是否包含我们感兴趣的目标&#xff0c;并调整区域边界从而更准确地预测目标的真实边界框&#xff08;ground-truth bounding box&#xff09;。 不同的模型使用的区域采样方法可能不同。 这里…

KVM网络桥接模式底层网络原理解说

文章目录 前言一、tap设备在kvm中的应用1. tap虚拟网络设备2. Tap/Tun工作原理3. 结论 二、KVM网络桥接模式细节解说1.查看虚拟网卡2.vnet虚拟网卡说明 总结 前言 在以下两篇文章中我们介绍了虚拟网卡技术以及虚拟交换机技术&#xff0c;今天我们再来详细说说在在kvm网络模式下…

chatgpt赋能python:为什么Python在SEO中不见了?

为什么Python在SEO中不见了&#xff1f; Python是众所周知的一种流行的编程语言&#xff0c;它被广泛地用于各种应用程序&#xff0c;从人工智能和机器学习到数据科学和Web应用程序。然而&#xff0c;在最近的一次更新中&#xff0c;有些人注意到Python似乎在搜索引擎优化&…

【LAMP平台建构】

一.LAMP介绍 LAMP架构是目前成熟的企业网站应用模式之一&#xff0c;指的是协同工作的一整套系统和相关软件&#xff0c;能够提供动态Web站点服务及其应用开发环境。LAMP是一个缩写词&#xff0c;具体包括Linux操作系统、Apache网站服务器、MySQL数据库服务器、PHP&#xff08;…

使用JS来实现tab栏切换

这是我今天从学习的知识点&#xff0c;今天试着做了一个tab栏切换&#xff0c;学到很多的知识点&#xff0c;讲师也比学校的老师讲的更加详细明白 个人名片&#xff1a; &#x1f60a;作者简介&#xff1a;一名大一在校生&#xff0c;web前端开发专业 &#x1f921; 个人主页…

c#快速入门

欢迎来到Cefler的博客&#x1f601; &#x1f54c;博客主页&#xff1a;那个传说中的man的主页 &#x1f3e0;个人专栏&#xff1a;题目解析 &#x1f30e;推荐文章&#xff1a;题目大解析2 目录 &#x1f449;&#x1f3fb; c#和c不同之处&#x1f449;&#x1f3fb;程序文件的…

三门问题的实验验证:贝叶斯概率公式实战

引言 数理统计与概率论经常出现在我们的日常生活中&#xff0c;如果能灵活掌握&#xff0c;可以起到很大的帮助。下面通过几个经典问题的探讨&#xff0c;浅入深出&#xff0c;更加深刻的理解贝叶斯全概率公式和贝叶斯公式的作用。 我的最深的体会就是&#xff0c;当某些已发生…

基于Go开发PaaS平台3

Go开发PaaS平台核心功能 代码仓库地址GitHub - yunixiangfeng/gopaas 10-18 中间件前端页面以及核心API开发&#xff08;中&#xff09; C:\Users\Administrator\Desktop\gopaas\middlewareapi\handler\middlewareApiHandler.go package handlerimport ("context"…

【技术解决方案】企业如何从SpringBoot应用平滑迁移到云原生K8s平台

文章目录 在K8S上部署Spring Cloud Alibaba在Kubernetes上部署Spring Cloud Kubernetes在Kubernetes上部署Spring Boot应用方案对比分析拥抱Service Mesh关于DevopsServerless最佳实践 好久不见了&#xff0c;小伙伴们&#xff0c;你们最近还好吗&#xff1f;有没有想我&#x…

常量池介绍

什么是“字面量”和“符号引用”和"直接引用" 最近看jvm时遇到了“字面量”和“符号引用”这两个概念&#xff0c;它们被存放在运行时常量池&#xff0c;看了一些博客以后对这两个概念有了初步认识。 字面量可以理解为实际值&#xff0c;int a 8中的8和String a …

linux互斥锁(pthread_mutex)知识点总结

对于多线程程序来说&#xff0c;我们往往需要对这些多线程进行同步。同步&#xff08;synchronization&#xff09;是指在一定的时间内只允许某一个线程访问某个资源。而在此时间内&#xff0c;不允许其它的线程访问该资源。我们可以通过互斥锁&#xff08;mutex&#xff09;&a…

1、Vue.js---Vue核心

目录 Vue是什么 什么是渐进式&#xff1a; Vue 的特点 与其它 JS 框架的关联 Vue 周边库 搭建Vue开发环境&#xff08;2种方式&#xff09; 1、直接用 2、NPM Hello小案例 小结&#xff1a; 模板语法 代码 小结&#xff1a; 数据绑定 代码&#xff1a; 小结&…

11、渗透性测试及验收测试

目录 什么是安全测试 安全测试与常规测试的区别 SQL注入漏洞 SQL注入漏洞会带来以下几种常见的后果&#xff1a; SQL注入漏洞攻击流程 注入点类型 SQL注入的防范措施 XSS跨站脚本漏洞 XSS原理解析 XSS类型 1、反射型XSS 2、存储型XSS 3、存储型XSS 查找XSS漏洞的…

1.4. 运算符与表达式

在 Java 中&#xff0c;运算符是用于执行特定操作的符号&#xff0c;而表达式是由变量、常量和运算符组成的一段代码&#xff0c;用于计算值。本节将介绍 Java 中的常用运算符和表达式的使用。 1.4.1. 算术运算符 Java 支持以下算术运算符&#xff1a; 加法&#xff08;&…

C语言基础习题讲解

C语言基础习题讲解 运算符判断简单循环 运算符 1. 设计一个程序, 输入三位数a, 分别输出个,十,百位. (0<a<1000) 样例输入: 251 样例输出: 2 5 1 #include <stdio.h> int main() {int input 0;int x 0;int y 0;int z 0;scanf("%d", &input);x …

chatgpt赋能python:Python三次方函数介绍

Python三次方函数介绍 Python是一种流行的编程语言&#xff0c;用于各种应用程序&#xff0c;包括数据分析和机器学习。Python三次方函数是Python语言中的一个内置函数&#xff0c;可用于计算一个数字的三次方。本文将介绍Python三次方函数的相关内容并提供一些示例。 Python…

chatgpt赋能python:Python三个数相加的方法与应用

Python三个数相加的方法与应用 在现代编程语言中&#xff0c;Python是一个非常流行的语言。Python语言的的特点是易学易用、功能强大、语法简洁等。在Python中&#xff0c;运算也是非常方便的&#xff0c;特别是对于数值计算。本文将讨论如何在Python中实现三个数的加法运算&a…