1.+运算符重载
全局函数实现重载
代码如下:
Person operator+(const Person& p2, int a)
{
Person temp;
temp.m_a=p2.m_a + a;
temp.m_b=p2.m_b + a;
return temp;
}
成员函数实现重载
代码如下:
class Person
{
public:
Person(){}
Person(int a, int b)
{
this->m_a=a;
this->m_b=b;
}
Person operator+(const Person& tdd)
{
Person temp;
temp.m_a = this->m_a+tdd.m_a;
temp.m_b = this->m_b+tdd.m_b;
return temp;
}
2.<<运算符重载
首先应该注意cout在ostream中定义好了,ostream的对象只能有一个不可以复制,应该用引用的方式传入参数
另外要实现链式编程,重载函数必须用引用的方式(ostream&)返回cout
代码如下:
ostream& operator<<(ostream &cout,Person &p)
//本质是cout << p
{
cout <<"p.m_a = "<<p.m_a<<"p.m_b = "<<p.m_b<<endl;
return cout;
}
2.读入数据
代码如下(示例):
data = pd.read_csv(
'https://labfile.oss.aliyuncs.com/courses/1283/adult.data.csv')
print(data.head())
该处使用的url网络请求的数据。
总结
提示:这里对文章进行总结:
例如:以上就是今天要讲的内容,本文仅仅简单介绍了pandas的使用,而pandas提供了大量能使我们快速便捷地处理数据的函数和方法。