Форум программистов, компьютерный форум, киберфорум
С++ для начинающих
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
2 / 2 / 1
Регистрация: 29.01.2013
Сообщений: 47
1

operator >>

28.04.2013, 21:51. Показов 436. Ответов 2
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// 1.h
#ifndef STONEWT_H_
#define STONEWT_H_
using std::cout;
using std::cin;
using std::endl;
class Stonewt
{
private:
    enum {Lbs_per_stn = 14};      // pounds per stone
    int stone;                    // whole stones
    double pds_left;              // fractional pounds
    double pounds;                // entire weight in pounds
public:
    Stonewt(double lbs);          // constructor for double pounds
    Stonewt(int stn, double lbs); // constructor for stone, lbs
    Stonewt();                    // default constructor
    ~Stonewt();
    friend std::ostream & operator<<(std::ostream & os, const Stonewt & a);
    friend std::istream & operator>>(std::istream & is, const Stonewt & a);
    bool operator < (Stonewt&);
    bool operator > (Stonewt&);
    bool operator == (Stonewt&);
    bool operator != (Stonewt&);
    bool operator <= (Stonewt&);
    bool operator >= (Stonewt&);
};
#endif
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// opred.cpp
#include <iostream>
using std::cout;
#include "1.h"
Stonewt::Stonewt(double lbs)
{
    stone = int (lbs) / Lbs_per_stn;    // integer division
    pds_left = int (lbs) % Lbs_per_stn + lbs - int(lbs);
    pounds = lbs;
}
Stonewt::Stonewt(int stn, double lbs)
{
    stone = stn;
    pds_left = lbs;
    pounds =  stn * Lbs_per_stn +lbs;
}
 
Stonewt::Stonewt()          // default constructor, wt = 0
{
    stone = pounds = pds_left = 0;
}
 
Stonewt::~Stonewt()         // destructor
{
}
bool Stonewt::operator < (Stonewt & a)
{ return (pounds<a.pounds);}
bool Stonewt::operator > (Stonewt& a)
{ return (pounds>a.pounds);}
bool Stonewt::operator == (Stonewt& a)
{return (pounds==a.pounds);}
bool Stonewt::operator != (Stonewt& a)
{return (pounds!=a.pounds);}
bool Stonewt::operator <= (Stonewt& a)
{return (pounds<=a.pounds);}
bool Stonewt::operator >= (Stonewt& a)
{return (pounds>=a.pounds);}
std::istream & operator>>(std::istream & is, const Stonewt& a)
{
    cout<<"Vvedute pounds: \n";
    is>>a.pounds;
    is.get();
    return is;
}
std::ostream & operator<<(std::ostream & os, const Stonewt & a)
{
    os<<a.pounds<<endl;
    return os;
}
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <iostream>
#include "1.h"
int main()
{
    Stonewt ar[6]={223,1234,299};
    int i;
    for(i=3;i<6;i++)
    {
        cin>>ar[i];
        cin.get();
    }
    Stonewt max=ar[0];
    for(i=0;i<6;i++)
    {
        if(ar[i]>max)
            max=ar[i];
    }
    Stonewt min=ar[0];
    {
        if(ar[i]<min)
            min=ar[i];
    }
    int sled=0;
    Stonewt ar11=154;
    for(i=0;i<6;i++)
    {
        if(ar[i]>=ar11)
            sled++;
    }
    cout<<endl;
    cout<<"Max: "<<max<<endl;
    cout<<"Min: "<<min<<endl;
    cout<<"Kol-vo elementov >= 11 stone: "<<sled<<endl;
    system("PAUSE");
    return 0;
}
Программа начинает сходить с ума, когда предлагается ввод.
Подскажите.
0
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
28.04.2013, 21:51
Ответы с готовыми решениями:

Class & operator's |Error: undefined reference to operator
Компилирует нормально, но когда хочу использовать оператор выдает ошибку:undefined reference to...

Перегрузка operator>> и operator<< в абстрактном классе
Здрасьте! Есть необходимость перегрузить потоки, Я знаю как это сделать через friend, но вот...

operator char() или operator int()
Здорова госпдо! Снова ничо не ясно как всегда. Разбираю программку из книги Страуструпа, там он...

Вызов operator[] через operator[] const
Перелистывал Майерса, наткнулся на код, подскажите пожалуйста почему он советует закомментированный...

2
45 / 45 / 12
Регистрация: 12.03.2013
Сообщений: 167
28.04.2013, 21:57 2
Думаю если убрать const то проблем не будет.
C++
1
2
3
4
5
6
7
std::istream & operator>>(std::istream & is, Stonewt& a)
{
    cout<<"Vvedute pounds: \n";
    is>>a.pounds;
    is.get();
    return is;
}
1
2 / 2 / 1
Регистрация: 29.01.2013
Сообщений: 47
28.04.2013, 22:01  [ТС] 3
Why so seriouS, я был уверен, что пробовал так. Спасибо.
0
28.04.2013, 22:01
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
28.04.2013, 22:01
Помогаю со студенческими работами здесь

Реализация operator + через operator +=
внутри следующей темы возник вопрос, ответ на который так и не был получен:...

Перегрузить операторы operator+() и operator*() в пользовательском классе "Комплексное число"
Здравствуйте. Предлагаю заняться арифметикой. Создал прослейший класс, перегрузил операторы...

Operator +, operator += — какой через какой реализовывать?
Для class Fraction { // ... public: Fraction operator + ( const Fraction&amp; right ) const;...

Чем "operator *=" отличается от "operator *"?
снова застряла, не могу понять, чем этот оператор должен отличаться от оператора*.....? вот он, но...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
3
Ответ Создать тему
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru