Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

OurMajorLangIsCAndCPlusPlus/2006.2.06/하기웅

From ZeroWiki
Revision as of 05:23, 7 February 2021 by imported>Unknown
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
#include <iostream>
using namespace std;

class newstring {
public:
	char *str;

	newstring(char* s)
	{
		str = new char[strlen(s)+1];
		strcpy(str, s);
	}

	int length() const
	{
		return strlen(str);
	}
};

ostream& operator << (ostream& o, const newstring& ns) 
{
	cout << ns.str;
	return o;
}

int main()
{
	const newstring s="123";
	cout << s << "123";
	cout << s.length();
	return 0;
}