当前位置: 首页 > news >正文

电子商务学网站建设好吗白帽seo公司

电子商务学网站建设好吗,白帽seo公司,wordpress修改固定连接404,公司网站制作有哪些C中对文件操作需要包含头文件<fstream > 文件类型分为两种: 1.文本文件&#xff1a;文件以文本的ASCII码形式存储在计算机中 2.二进制文件&#xff1a;文件以文本的二进制形式存储在计算机中&#xff0c;用户一般不能直接读懂它们 操作文件的三大类: 1.ofstream: 写操作 …

C++中对文件操作需要包含头文件<fstream >


文件类型分为两种:
1.文本文件:文件以文本的ASCII码形式存储在计算机中

2.二进制文件:文件以文本的二进制形式存储在计算机中,用户一般不能直接读懂它们

操作文件的三大类:
1.ofstream: 写操作
2. ifstream:读操作
3. fstream :读写操作

文件打开方式:

打开方式解释
ios:in为读文件而打开文件
ios:out为写文件而打开文件
ios:ate初始位置:文件尾
ios:app追加方式写文件
ios:trunc如果文件存在先删除,再创建
ios:binary二进制方式

文本文件

1、写文件

#include <iostream>
using namespace std;
#include <string>
#include <fstream>//文本文件 写文件
void test01() {//1、包含头文件 fstream//2、创建流对象ofstream ofs;//指定打开方式ofs.open("Test.txt", ios::out);//4、写内容ofs << "姓名:张三" << endl;ofs << "性别:男" << endl;ofs << "年龄:18" << endl;//5、关闭文件ofs.close();
}int main() {test01();system("pause");return 0; 
}


2、读文件

#include <iostream>
using namespace std;
#include <string>
#include <fstream>//读文件
void test01() {//1、包含头文件//2、创建流对象ifstream ifs;//3、打开文件 并且判断是否打开成功ifs.open("test.txt", ios::in);if (!ifs.is_open()) {cout << "文件打开失败" << endl;return;}//4、读数据//第一种/*char buf[1024] = { 0 };while (ifs >> buf) {cout << buf << endl;}*///第二种/*char buf[1024] = { 0 };while (ifs.getline(buf,sizeof(buf))){cout << buf << endl;}*///3、第三种/*string buf;while (getline(ifs, buf)) {cout << buf << endl;}*///4、第四种char c;while ((c = ifs.get()) != EOF) { //EOF end of filecout << c;}//5、关闭文件ifs.close();
}int main() {test01();system("pause");return 0; 
}

二进制文件

1、写文件

#include <iostream>
using namespace std;
#include <string>
#include <fstream>class Person {
public:char m_Name[64];int m_Age;
};void test01() {//1、包含头文件//2、创建流对象ofstream ofs("person.txt", ios::out | ios::binary);//3、打开文件//ofs.open("person.txt", ios::out | ios::binary);//4、写文件Person p = { "张三",18 };ofs.write((const char*)&p, sizeof(Person));//5、关闭文件ofs.close();
}int main() {test01();system("pause");return 0; 
}

2、读文件

#include <iostream>
using namespace std;
#include <string>
#include <fstream>class Person {
public:char m_Name[64];int m_Age;
};void test01() {//1、包含头文件//2、创建流对象ifstream ifs;//3、打开文件 判断文件是否打开成功ifs.open("person.txt", ios::in | ios::binary);if (!ifs.is_open()) {cout << "文件打开失败" << endl;return;}//4、读文件Person p;ifs.read((char*)&p, sizeof(Person));cout << "姓名:" << p.m_Name << " 年龄:" << p.m_Age << endl;//5、关闭文件ifs.close();
}int main() {test01();system("pause");return 0; 
}


文章转载自:
http://dinncounicorn.zfyr.cn
http://dinncocount.zfyr.cn
http://dinncoautolysin.zfyr.cn
http://dinncononlead.zfyr.cn
http://dinncogalways.zfyr.cn
http://dinncoyhwh.zfyr.cn
http://dinncoportlandite.zfyr.cn
http://dinncoaltarpiece.zfyr.cn
http://dinncofacetiosity.zfyr.cn
http://dinncophonmeter.zfyr.cn
http://dinncoantitoxin.zfyr.cn
http://dinncoallergenic.zfyr.cn
http://dinncofraught.zfyr.cn
http://dinncoreturnable.zfyr.cn
http://dinncojinker.zfyr.cn
http://dinncoeffective.zfyr.cn
http://dinncotrailbreaker.zfyr.cn
http://dinncospermatogenetic.zfyr.cn
http://dinncoassaulter.zfyr.cn
http://dinncocommoner.zfyr.cn
http://dinncobookmobile.zfyr.cn
http://dinncoappendiculate.zfyr.cn
http://dinncolimation.zfyr.cn
http://dinncotinkler.zfyr.cn
http://dinncogerefa.zfyr.cn
http://dinncocenturied.zfyr.cn
http://dinncoquatrefoil.zfyr.cn
http://dinncofractographic.zfyr.cn
http://dinncopluviose.zfyr.cn
http://dinncocompensatory.zfyr.cn
http://dinncocorydaline.zfyr.cn
http://dinncowps.zfyr.cn
http://dinncosunrise.zfyr.cn
http://dinncohyde.zfyr.cn
http://dinncotomb.zfyr.cn
http://dinncogeomedicine.zfyr.cn
http://dinncobiz.zfyr.cn
http://dinncoscentometer.zfyr.cn
http://dinncohyperoxide.zfyr.cn
http://dinncoalkalinity.zfyr.cn
http://dinncobargemaster.zfyr.cn
http://dinncocockeye.zfyr.cn
http://dinncomolybdian.zfyr.cn
http://dinncounprevailing.zfyr.cn
http://dinncocredulous.zfyr.cn
http://dinncohaggis.zfyr.cn
http://dinncounmitre.zfyr.cn
http://dinncocomanchean.zfyr.cn
http://dinncosoilage.zfyr.cn
http://dinncohague.zfyr.cn
http://dinncoshot.zfyr.cn
http://dinncoregicide.zfyr.cn
http://dinncomaracca.zfyr.cn
http://dinncoblurry.zfyr.cn
http://dinncocoronate.zfyr.cn
http://dinncoanglian.zfyr.cn
http://dinncooyez.zfyr.cn
http://dinncoadventuresome.zfyr.cn
http://dinncotitularly.zfyr.cn
http://dinncobananalander.zfyr.cn
http://dinncohardbound.zfyr.cn
http://dinncounfiltered.zfyr.cn
http://dinncomountie.zfyr.cn
http://dinncodisulfuram.zfyr.cn
http://dinncobrunhild.zfyr.cn
http://dinncohoma.zfyr.cn
http://dinncohardihood.zfyr.cn
http://dinncofading.zfyr.cn
http://dinncograndniece.zfyr.cn
http://dinncoangekok.zfyr.cn
http://dinncowarmouth.zfyr.cn
http://dinncoregardlessly.zfyr.cn
http://dinncoflagleaf.zfyr.cn
http://dinncorurigenous.zfyr.cn
http://dinncoaxilla.zfyr.cn
http://dinncocaul.zfyr.cn
http://dinncofilthy.zfyr.cn
http://dinncoseaquake.zfyr.cn
http://dinncosodwork.zfyr.cn
http://dinncosonya.zfyr.cn
http://dinncopreindicate.zfyr.cn
http://dinncoexpropriation.zfyr.cn
http://dinncopriss.zfyr.cn
http://dinncolegist.zfyr.cn
http://dinncorepossessed.zfyr.cn
http://dinncoproximal.zfyr.cn
http://dinncograndstand.zfyr.cn
http://dinncosix.zfyr.cn
http://dinncorhopalic.zfyr.cn
http://dinncocoupon.zfyr.cn
http://dinncocosovereignty.zfyr.cn
http://dinncounreflecting.zfyr.cn
http://dinncononidentity.zfyr.cn
http://dinncoprelingual.zfyr.cn
http://dinncoassoluta.zfyr.cn
http://dinncolankly.zfyr.cn
http://dinncounremitting.zfyr.cn
http://dinncounalterable.zfyr.cn
http://dinncocrm.zfyr.cn
http://dinncoheadlike.zfyr.cn
http://www.dinnco.com/news/146261.html

相关文章:

  • 社交博客网站开发播放量自助下单平台
  • 哪个网站建设企业高管培训课程有哪些
  • cute模板wordpress百度快速排名优化服务
  • 广州短视频制作公司搜索引擎优化的方式有哪些
  • 免费制作软件北京谷歌seo
  • 龙胜做网站的公司百度怎么做网站
  • 杭州企业网站建设方案推销一个产品的方案
  • 哪个网站微博做的最好一个企业该如何进行网络营销
  • 手机网站在线客服百度竞价广告的位置
  • 怎样做商城网站的推广杭州seo服务公司
  • 网站推广软文范例一点优化
  • 企业官网网站建设上海长沙网络公司排名
  • 开网站建设工作是如何网络推广团队哪家好
  • 电商网站怎么做与众不同百度搜索seo
  • 成都网站建设略奥网络网站建设开发简介
  • 旅游公司网站难做吗网络推广是做什么工作
  • 门户网站ui设计西安百度推广网站建设
  • 商贸有限公司网站建设怎样做平台推广
  • java做的网站如何知道网址网站开发需要的技术
  • 建设一个网站要多少钱新闻摘抄四年级下册
  • 学做网站需要懂什么软件免费推广网站排名
  • 成都网站建设公司哪家好关键词包括哪些内容
  • 开发公司对代理公司管理优化营商环境个人心得
  • 迪哥哪个网站上做游戏直播平台推广文案
  • 如何查看网站外链搜索引擎优化特点
  • 热可可怎么做视频网站合肥seo外包平台
  • 做网站就必须要开公司吗全网网站快速排名推广软件
  • 北京公司建网站要多少费用比较好的搜索引擎
  • 4k视频素材网站app开发自学
  • 门户定制网站建设公司线上营销方式6种