职工管理系统

news2025/4/5 13:25:54

woker.h

#pragma once
#include<iostream>
#include<string>
using namespace std;
class worker {
public:
	//显示岗位信息
	virtual void showInfo() = 0;
	//获取岗位名称
	virtual string getDeptName() = 0;

	int m_Id;//职工编号
	string m_Name;//职工姓名
	int m_DeptId;//职工部门编号
};

Manager.h

#pragma once
#include<iostream>
#include<string>
#include"worker.h"
using namespace std;
//经理类声明
class Manager:public worker {
public:
	//构造函数
	Manager(int id, string name, int did);
	//显示岗位信息
	void showInfo();
	//获取岗位名称
	string getDeptName();
};

Manager.cpp

#include<iostream>
#include"Manager.h"
#include<string>
using namespace std;
//employee类实现
// 
//实现构造函数
Manager::Manager(int id, string name, int did) {
	m_Id = id;
	m_Name = name;
	m_DeptId = did;
}
//实现显示个人信息方法
void Manager::showInfo() {
	cout << "职工编号:" << this->m_Id << "\t职工姓名:" << this->m_Name << "\t岗位:"
		<< this->getDeptName() << "\t岗位职责:完成老板交代的各项任务,并下发任务给员工" << endl;
}
//实现显示岗位名称方法
string Manager::getDeptName() {
	return "经理";
}

employee.h

#pragma once
#include<iostream>
#include<string>
#include"worker.h"
using namespace std;
//普通员工类声明
class Employee:public worker {
public:
	//构造函数
	Employee(int id, string name, int did);
	//显示岗位信息
	void showInfo();
	//获取岗位名称
	string getDeptName();
};

employee.cpp

#include<iostream>
#include"employee.h"
#include<string>
using namespace std;
//employee类实现
// 
//实现构造函数
Employee::Employee(int id, string name, int did) {
	m_Id = id;
	m_Name = name;
	m_DeptId = did;
}
//实现显示个人信息方法
void Employee::showInfo() {
	cout << "职工编号:" << this->m_Id << "\t职工姓名:" << this->m_Name << "\t岗位:" 
		<< this->getDeptName() << "\t岗位职责:完成经理交付的各项任务" << endl;
}
//实现显示岗位名称方法
string Employee::getDeptName() {
	return "员工";
}

boss.h

#pragma once
#include<iostream>
#include<string>
#include"worker.h"
using namespace std;
//老板类声明
class Boss :public worker {
public:
	//构造函数
	Boss(int id, string name, int did);
	//显示岗位信息
	void showInfo();
	//获取岗位名称
	string getDeptName();
};

boss.cpp

#include<iostream>
#include"Boss.h"
#include<string>
using namespace std;
//Boss类实现
//实现构造函数
Boss::Boss(int id, string name, int did) {
	m_Id = id;
	m_Name = name;
	m_DeptId = did;
}
//实现显示个人信息方法
void Boss::showInfo() {
	cout << "职工编号:" << this->m_Id << "\t职工姓名:" << this->m_Name << "\t岗位:"
		<< this->getDeptName() << "\t岗位职责:管理公司所有事务" << endl;
}
//实现显示岗位名称方法
string Boss::getDeptName() {
	return "总裁";
}

wokerManager.h

#pragma once
#include<iostream>
#include"worker.h"
#include<fstream>//文件操作
const string FILENAME = "empFile.txt";
using namespace std;
//职工管理类(打印菜单,退出功能)
class WokerManager {
public:
	WokerManager();
	~WokerManager();
	void MenuPrint();//打印菜单函数
	void exitSystem();//退出函数
	void Add_Emp();//添加员工函数
	void save();//保存文件函数
	int get_EmpNum();//统计文件中的人数
	void init_Emp();//初始化员工
	void Show_emp();//显示职工
	void Del_emp();//删除职工
	int IsExist(int id);//判断职工是否存在
	void Mod_Emp();//修改职工
	void Find_Emp();//查找
	void Sort_Emp();//排序
	void Clean_File();//清空

	int m_EmpNum;//维护职工数目
	worker** m_EmpArray;
	bool m_FilesIsEmpty;//判断文件是否为空
};

wokerManager.cpp

#pragma once
#include<ios>
#include"wokerManager.h"
#include"worker.h"
#include"employee.h"
#include"boss.h"
#include"manager.h"
using namespace std;
//职工管理初始化构造函数
WokerManager::WokerManager(){
    //1.文件不存在
    ifstream ifs;
    ifs.open(FILENAME, ios::in);//读文件
    if (!ifs.is_open()) {
        cout << "                   文件不存在 " << endl;
        //初始化属性
        //初始化记录数
        this->m_EmpNum = 0;
        //初始化数组指针
        this->m_EmpArray = NULL;
        //初始化文件为空
        this->m_FilesIsEmpty = true;
        ifs.close();
        return;
    }
    //2.文件存在但数据为空
    char ch;
    ifs >> ch;//读一个字符
    if (ifs.eof()) {//这个字符是尾部标志
        //文件为空
        cout << "                   文件为空" << endl;
        //初始化属性
        //初始化记录数
        this->m_EmpNum = 0;
        //初始化数组指针
        this->m_EmpArray = NULL;
        //初始化文件为空
        this->m_FilesIsEmpty = true;
        ifs.close();
        return;
    }
    //3.文件存在,并且记录数据
    int num = this->get_EmpNum();
    //cout << "职工人数为:" << num << endl;
    this->m_EmpNum = num;

    //开辟空间
    this->m_EmpArray = new worker*[this->m_EmpNum];
    //讲文件中的数据,存到数组中
    this->init_Emp();
    测试代码
    //for (int i = 0; i < this->m_EmpNum; i++) {
    //    cout << this->m_EmpArray[i]->m_Id << " " << this->m_EmpArray[i]->m_Name << " " << this->m_EmpArray[i]->m_DeptId << endl;
    //}
    
    
}
//重写析构函数
WokerManager::~WokerManager() {
    if (this->m_EmpArray != NULL) {
        for (int i = 0; i < this->m_EmpNum; i++) {
            if (this->m_EmpArray != NULL) {
                delete this->m_EmpArray[i];
            }
        }
        delete[] this->m_EmpArray;
        this->m_EmpArray = NULL;
    }
}
//职工管理删除职工
void WokerManager::Del_emp() {
    if (this->m_FilesIsEmpty) {
        cout << "文件不存在或记录为空" << endl;
        return;
    }
    cout <<endl<< "                     请输入删除职工编号";
    int id;
    cin >> id;
    int index = IsExist(id);
    if (index == -1) {
        cout <<endl<< "                     删除职工不存在" << endl;
    }
    else {
        for (int i = index; i < this->m_EmpNum; i++) {
            this->m_EmpArray[i-1] = this->m_EmpArray[i];
        }
        this->m_EmpNum--;
        this->save();//保存到文件
        cout <<endl<< "                     删除成功!" << endl;
    }
    cin.get();
    cin.get();

}
//实现修改职工函数
void WokerManager::Mod_Emp() {
    if (this->m_FilesIsEmpty) {
        cout << endl << "                     文件不存在或记录为空!" << endl;
    }
    else {
        cout <<endl<< "                     请输入修改职工编号";
        int id;
        cin >> id;
        int index = this->IsExist(id);//查看职工是否存在
        if (index == -1) {
            cout << endl << "                     修改职工不存在" << endl;
        }
        else {
            cout << "                     请选择修改职工哪项信息:1.编号 2.姓名 3.岗位"<< endl;
            int choice;
            cout << "                     ";
            cin >> choice;
            switch (choice)
            {
            case 1: {
                int ID;
                cout << "                     请输入新的编号:";
                cin >> ID;
                this->m_EmpArray[index]->m_Id = ID;
                break;
            }
            case 2: {
                string Name;
                cout << "                     请输入新的姓名:";
                cin >> Name;
                this->m_EmpArray[index]->m_Name = Name;
                break;
            }
            case 3: {
                int DID;
                cout <<endl<< "                     请输入新的岗位编号:1.普通员工 2.管理员 3.总裁   :" << endl;
                cin >> DID;
                this->m_EmpArray[index]->m_DeptId = DID;
                break;
            }
            default:
                cout << "输入有误修改失败" << endl;
                cin.get();
                cin.get();
                return;
            }
        }
        cout << "                     修改成功!" << endl;
        this->save();
    }
    cin.get();
    cin.get();
}
//职工管理实现职工是否存在判断函数
int WokerManager::IsExist(int id) {
    int index = -1;
    for (int i = 0; i < this->m_EmpNum; i++) {
        if (this->m_EmpArray[i]->m_Id == id) {
            index = i;
            break;
        }
    }
    return index;
}
//职工管理显示员工
void WokerManager::Show_emp() {
    if (this->m_FilesIsEmpty) {
        cout << "                     文件不存在或文件为空" << endl;
    }
    else {
        for (int i = 0; i < this->m_EmpNum; i++) {
            //利用多态调用显示的接口
            this->m_EmpArray[i]->showInfo();
        }
    }
    cin.get();
    cin.get();
    system("cls");
}

//职工管理初始化员工
void WokerManager::init_Emp() {
    ifstream ifs;
    ifs.open(FILENAME, ios::in);
    int id;
    string name;
    int dId;
    int index = 0;
    while (ifs >> id && ifs >> name && ifs >> dId) {
        worker* woker = NULL;
        //根据不同部门创建对象
        if (dId == 1) {//1普通员工
            woker = new Employee(id, name, dId);
        }
        else if (dId == 2) {//2经理
            woker = new Manager(id, name, dId);
        }
        else {//3总裁
            woker = new Boss(id, name, dId);
        }
        //存入数组中
        this->m_EmpArray[index++] = woker;
        this->m_EmpNum = index;
    }
}
//职工管理实现统计文件中的人数
int WokerManager::get_EmpNum() {
    ifstream ifs;
    ifs.open(FILENAME, ios::in);//打开文件
    int id;
    string name;
    int dId;
    int num = 0;
    while (ifs >> id && ifs >> name && ifs >> dId) {
        num++;//统计人数变量
    }
    return num;
}
//职工管理实现退出方法
void WokerManager::exitSystem() {
	cout << "                       欢迎下次使用" << endl;
	exit(0);
}
//职工管理实现打印菜单方法
void WokerManager::MenuPrint() {
	printf("************************* 职工管理系统 ***********************************\n");
	printf("                         1.增加职工信息\n");
	printf("                         2.显示职工信息\n");
	printf("                         3.修改职工信息\n");
	printf("                         4.查找职工信息\n");
	printf("                         5.删除职工信息\n");
	printf("                         6.按照编号排序\n");
	printf("                         7.清空职工信息\n");
	printf("                         8.退出系统\n");
	printf("************************* ************** ***********************************\n\n");
}
//职工管理实现添加职工方法
void WokerManager::Add_Emp() {
    cout <<endl<< "                   请输入添加职工数量:" ;
    int addNum = 0;
    cin >> addNum;
    if (addNum > 0) {
        int newSize = m_EmpNum + addNum; // 更新人数
        // 开辟新空间
        worker** newSpace = new worker * [newSize];
        // 将原来空间下的数据,拷贝到新空间下
        if (m_EmpNum != NULL) {
            for (int i = 0; i < m_EmpNum; i++) {
                newSpace[i] = m_EmpArray[i];
            }
        }
        // 批量添加新数据
        for (int i = 0; i < addNum; i++) {
            int id;
            string name;
            cout <<endl<<"                   请输入第" << i + 1 << "个新职工编号:" ;
            cin >> id;
            cout <<endl<< "                   请输入第" << i + 1 << "个新职工姓名:" ;
            cin >> name;
            
            cout <<endl<< "                    <岗位>" << endl;
            cout << "                   1.普通员工" << endl;
            cout << "                   2.经理" << endl;
            cout << "                   3.老板" << endl;
            int dselect; // 部门选择
            cout << endl << "                   请选择职工岗位:";
            cin >> dselect;
            worker* worker =NULL;
            switch (dselect) {
            case 1: {
                worker = new Employee(id, name, dselect);
                break;
            }
            case 2: {
                worker = new Manager(id, name, dselect);
                break;
            }
            case 3: {
                worker = new Boss(id, name, dselect);
                break; // 添加缺失的break语句
            }
            default:
                cout << "输入有误 添加失败!";
                cin.get(); cin.get();
                return;
            }
            newSpace[m_EmpNum + i] = worker;
        }
        // 释放原来的空间
        delete[] this->m_EmpArray;
        // 更新新空间指向
       this->m_EmpArray = newSpace;
        // 更新新的职工人数
        m_EmpNum = newSize;
        // 成功后添加到文件
        this->save();
        // 提示成功
        this->m_FilesIsEmpty = false;//更新职工不为空
        cout << "                           成功添加" << addNum << "名新员工" << endl;
    }
    else {
        cout << "                           输入数据有误!" << endl;
    }
    //按任意键清屏,回到上级目录
    cin.get();
    cin.get();
    system("cls");
}
//查找员工
void WokerManager::Find_Emp() {
    if (this->m_FilesIsEmpty) {
        cout << "                         文件不存在或者记录为空!" << endl;
    }
    else {
        cout << "                         1.按编号查找" << endl;
        cout << "                         2.按姓名查找" << endl;
        cout << "                         请输入查找方式:";
        int select;
        cin >> select;

        if (select == 1) {//按照编号查找
            cout << "                         请输入查找编号:";
            int Id;
            cin >> Id;
            int index = this->IsExist(Id);
            if (index == -1)
                cout << "                         查找编号不存在" << endl;
            else {
                cout << "                         查找成功!该职工信息如下:"; this->m_EmpArray[index]->showInfo();
            }
        }
        else if(select==2){//按照姓名查找
            string name;
            cout << "                         请输入查找姓名:";
            cin >> name;
            bool flag = false;//查找成功标志
            for (int i = 0; i < this->m_EmpNum; i++) {
                if (this->m_EmpArray[i]->m_Name == name) {
                    cout << "                         查找成功职工信息如下:"; this->m_EmpArray[i]->showInfo();
                    flag = true;
                }
            }
            if (!flag) {
                cout << "                         查找失败,员工不存在" << endl;
            }
        }
        else {
            cout << "                         输入有误" << endl;
            cin.get();
            return;
        }
    }
    cin.get();
    cin.get();
}
//排序
void WokerManager::Sort_Emp() {
    if (this->m_FilesIsEmpty) {
        cout << "文件不存在或者记录为空" << endl;
    }
    else {
        cout << "1.按职工号升序排序" << endl;
        cout << "2.按职工号降序排序" << endl;
        cout << "请选择排序方式:";
        int select;
        cin >> select;
        //冒泡排序
        if (select == 1) {//升序冒泡排序
            for (int i = 0; i < this->m_EmpNum - 1; i++) {
                for (int j = 0; j < this->m_EmpNum - i - 1; j++) {
                    if (this->m_EmpArray[j]->m_Id > this->m_EmpArray[j + 1]->m_Id) {
                        swap(this->m_EmpArray[j], this->m_EmpArray[j + 1]);
                    }
                }
            }
        }
        else if (select == 2) {//降序冒泡排序
            for (int i = 0; i < this->m_EmpNum - 1; i++) {
                for (int j = 0; j < this->m_EmpNum - i - 1; j++) {
                    if (this->m_EmpArray[j]->m_Id < this->m_EmpArray[j + 1]->m_Id) {
                        swap(this->m_EmpArray[j], this->m_EmpArray[j + 1]);
                    }
                }
            }
        }
        else {
            cout << "选择有误" << endl;
            cin.get();
            return;
        }
    }
    cout << "排序成功" << endl;
    cin.get();
    cin.get();
}
//清空文件
void WokerManager::Clean_File() {
    cout << "确认清空?" << endl;
    cout << "1.确认" << endl;
    cout << "2.返回" << endl;
    int select;
    cin >> select;
    if (select == 1) {
        //打开模式 ios::trunc 如果存在删除文件并重新创建
        ofstream ofs(FILENAME, ios::trunc);
        ofs.close();

        //清空维护的指针
        if (this->m_EmpArray != NULL) {
            for (int i = 0; i < this->m_EmpNum; i++) {
                if (this->m_EmpArray != NULL) {
                    delete this->m_EmpArray[i];
                }
            }
            this->m_EmpNum = 0;
            delete[] this->m_EmpArray;
            cout << "清空成功!" << endl;
            cin.get();
        }
    }
    else {
        return;
    }
}
//职工管理实现保存文件
void WokerManager::save() {
    ofstream ofs;
    ofs.open(FILENAME, ios::out);//写的方式打开文件
    //利用for循环将数据写入文件
    for (int i = 0; i < this->m_EmpNum; i++) {
        ofs << this->m_EmpArray[i]->m_Id << " "
            << this->m_EmpArray[i]->m_Name << " "
            << this->m_EmpArray[i]->m_DeptId << endl;
    }
    ofs.close();//关闭文件
}

Main.cpp

#include<iostream>
#include"wokerManager.h"
#include"worker.h"
#include"employee.h"
#include"manager.h"
#include"boss.h"
using namespace std;
int main() {
	WokerManager wm;
	while (1) {
		wm.MenuPrint();
		printf("                       请输入操作:");
		int op;
		cin >> op;
		cout << endl;
		switch (op)
		{
		case 1: {
			wm.Add_Emp();//增加职工信息
			break;
		}
		case 2: {
			wm.Show_emp();//显示职工信息
			break;
		}
		case 3: {
			wm.Mod_Emp();//修改职工信息
			break;
		}
		case 4: {
			wm.Find_Emp();//查找职工信息
			break;
		}
		case 5: {
			wm.Del_emp();//删除职工信息
			break;
		}
		case 6: {
			wm.Sort_Emp();//按编号排序
			break;
		}
		case 7: {
			wm.Clean_File();//清空所有文档
			break;
		}
		default:
			wm.exitSystem();
			break;
		}
		system("cls");
	}
	cin.get();
	return 0;
}

在这里插入图片描述

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

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

相关文章

大学生用一周时间给麦当劳做了个App(uni-app版)

背景 有个大学生粉丝最近私信联系我&#xff0c;说基于我之前开源的多语言项目做了个仿麦当劳的项目&#xff0c;虽然只是个样子货&#xff0c;但是收获颇多&#xff0c;希望把自己写的代码开源出来供大家一起学习进度。这个小伙伴确实是非常积极上进&#xff0c;很多大学生&a…

ssh 连接出现错误: kex_exchange_identification: Connection closed by remote host

错误如下表示&#xff1a; windstormLocalHost-Server ~> ssh webase-front192.168.122.22 Couldnt get a file descriptor referring to the console. fish: Unknown command: nc fish: exec nc -X connect -x 127.0.0.1:15732 192.168.122.22 22 ^^ kex_exchange_id…

个人博客系统(二)

该博客系统共有八个页面,即注册页面、登录页面、添加文章页面、修改文章页面、我的博客列表页面、主页、查看文章详情页面、个人中心页面。 1 注册页面 该页面如图所示: 首先,要先判断注册的用户名、密码、确认密码以及验证码是否为空,若有一个为空,点击提交,则会提醒 …

代码随想录二刷day56 | 动态规划之 583. 两个字符串的删除操作 72. 编辑距离

day56 583. 两个字符串的删除操作1.确定dp数组&#xff08;dp table&#xff09;以及下标的含义2.确定递推公式3.dp数组如何初始化4.确定遍历顺序5.举例推导dp数组 72. 编辑距离1. 确定dp数组&#xff08;dp table&#xff09;以及下标的含义2. 确定递推公式3. dp数组如何初始化…

信号采样基本概念 —— 4. 移动平均滤波(Moving Average Filtering)

对于信号的滤波算法中&#xff0c;除了FFT和小波&#xff08;wavelet&#xff09;以外&#xff0c;还有其他一些常见的滤波算法可以对信号denoising。接下来的几个章节里&#xff0c;将逐一介绍这些滤波算法。而今天首先要介绍的就是&#xff0c;移动平均滤波&#xff08;Movin…

android studio 离线打包配置push模块

1.依赖引入 SDK\libs aps-release.aar, aps-unipush-release.aar, gtc.aar, gtsdk-3.2.11.0.aar, 从android studio的sdk中找到对应的包放到HBuilder-Integrate-AS\simpleDemo\libs下面 2.打开build.gradle&#xff0c;在defaultConfig添加manifestPlaceholders节点&#xff0c…

浅谈vue3与vue2的区别

vue3已经出来有一段时间了&#xff0c;相信很多公司项目都已经在用vue3重构项目&#xff0c;或者在新项目中直接用vue3搭建&#xff0c;那么我们学习vue3的必要性就有了。 v2 与 v3 的区别 v3 采用的是 monorepo 方式进行管理&#xff0c;将模块拆分到 package 目录中v3 采用…

用 PerfView 洞察.NET程序非托管句柄泄露

一&#xff1a;背景 1. 讲故事 前几天写了一篇 如何洞察 .NET程序 非托管句柄泄露 的文章&#xff0c;文中使用 WinDbg 的 !htrace 命令实现了句柄泄露的洞察&#xff0c;在文末我也说了&#xff0c;WinDbg 是以侵入式的方式解决了这个问题&#xff0c;在生产环境中大多数情况…

C++ cin

cin 内容来自《C Primer》 cin使用>>运算符从输入流中抽取字符 int carrots;cin >> carrots;如下的例子&#xff0c;用户输入的字符串有空格 #include <iostream>int main() {using namespace std;const int ArSize 20;char name[ArSize]; //用户名char …

HIVE SQL实现通过两字段不分前后顺序去重

--数据建表 drop table if exists db.tb_name; create table if not exists db.tb_name ( suj1 string,suj2 string ) ;insert overwrite table db.tb_name values ("语文","数学") ,("语文","英语") ,("数学","语文&…

[禁止登录]登录失败,建议升级最新版本后重试,或通过问题反馈与我们联系。(错误码:45)

token失效:[禁止登录]登录失败&#xff0c;建议升级最新版本后重试&#xff0c;或通过问题反馈与我们联系。(错误码:45。 [禁止登录]登录失败&#xff0c;建议升级最新版本后重试&#xff0c;或通过问题反馈与我们联系。 使用go-cqhttp开发QQ机器人的时候遇到的问题&#xff0c…

小白入门深度学习 | 6-5:Inception-v1(2014年)详解

1. 理论知识 GoogLeNet首次出现在2014年ILSVRC 比赛中获得冠军。这次的版本通常称其为Inception V1。Inception V1有22层深,参数量为5M。同一时期的VGGNet性能和Inception V1差不多,但是参数量也是远大于Inception V1。 Inception Module是Inception V1的核心组成单元,提出…

市面上的充电桩分类以及系统分析

摘要&#xff1a;智能用电小区是国家电网为了研究智能电网智能用电的先进技术如何运用于居民区&#xff0c;提高人民的生活水平&#xff0c;提高电网智能化水平以及提升用电服务质量而进行的一项尝试。电动汽车作为智能用电小区建设的一个组成部分同样也逐渐被纳入发展规划&…

聊聊传统监控与云原生监控的区别

传统监控的本质就是收集、分析和使用信息来观察一段时间内监控对象的运行进度&#xff0c;并且进行相应的决策管理的过程&#xff0c;监控侧重于观察特定指标。 但是随着云原生时代的到来&#xff0c;我们对监控提出了更多的要求&#xff1a; 通过监控了解数据趋势&#xff0c…

2023年7月杭州/郑州/深圳传统行业产品经理NPDP认证招生

产品经理国际资格认证NPDP是新产品开发方面的认证&#xff0c;集理论、方法与实践为一体的全方位的知识体系&#xff0c;为公司组织层级进行规划、决策、执行提供良好的方法体系支撑。 【认证机构】 产品开发与管理协会&#xff08;PDMA&#xff09;成立于1979年&#xff0c;是…

如何用smardaten无代码平台进行复杂逻辑编排?

目录 1、前言2、复杂逻辑编排是什么&#xff1f;3、服务编排-进销存&#xff08;1&#xff09;业务说明&#xff08;2&#xff09;设计说明1&#xff09;数据库设计2&#xff09;表单设计3&#xff09;列表设计4&#xff09;逻辑设计4.1 逻辑控制设计4.2 服务编排设计 4、使用体…

Redis学习(四)Redis原理:底层数据结构、网络模型、内存回收策略

文章目录 Redis底层数据结构SDS 动态字符串IntSet 整数集合Dict 字典Dict伸缩中的渐进式再哈希 ZipList 压缩列表QuickLisk 快速列表SkipList 跳表动态索引建立 RedisObject变量类型与数据结构实现StringListSetZSetHash Redis网络模型Redis是单线程还是多线程&#xff1f;为什…

VUE安装部署+应用

1.下载vscode 安装教程&#xff1a;https://blog.csdn.net/T1401026064/article/details/128692088 百度网盘&#xff1a;VSCodeUserSetup-x64-1.74.3.exe 提取码&#xff1a;8s8a 2.VUE教程 可以用&#xff01;快捷输入代码框架。 教程&#xff1a;https://cn.vuejs.org/guid…

解决Git fatal: refusing to merge unrelated histories报错

问题描述 当在远程建立了一个仓库&#xff0c;并且远程的仓库已经初始化了的情况&#xff0c;使用 git remote add origin gitgithub.com:xxx/xxx.git命令添加远程仓库后&#xff0c;执行git pull,然后提示如下&#xff1a; 大致意思就是需要关联我们的本地和远程分支。按照…