0

皆さん、こんにちは。

<<次のようなことをするために、左シフト ビット演算子 をオーバーロードしようとしています。

char value[] = "Hello";
value << 2;

これを行うとき、「val」のように印刷したいので、最後の2文字を削除します。私の問題は、オーバーロード関数を適切に宣言できないことです。

私のコードは次のとおりです。

//the .h file    
#pragma once
#include <iostream>

class Operators
{
public:
    char *word;
    int number;

    Operators(void);
    Operators(char str[], int num);
    ~Operators(void);
    void Print(void);
    friend char & operator<<(char &stream, int &nr);     
};

#include "StdAfx.h"
#include "Operators.h"
#include <iostream>

Operators::Operators(void)
{
    word = "";
    number = 0;
}

Operators::Operators(char *str, int num)
{
    word = str;
    number = num;
}

Operators::~Operators(void)
{
}

void Operators::Print(void)
{
    printf("\nThe String: %s", word);
}

friend char & operator<<(char &stream, int &nr)
{

    return stream;
}

// Operator_Overloading.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "Operators.h"
#include <conio.h>
#include <iostream>

using namespace std;


int _tmain(int argc, _TCHAR* argv[])
{
    char value[] = "Hello";
    Operators op(value, 2);


    op.Print();

    _getch();
    return 0;
}
4

1 に答える 1