로그인

검색

C/C++
2013.07.28 02:44

Simplified Logger Class

MoA
조회 수 6682 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 게시글 수정 내역 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 게시글 수정 내역 댓글로 가기 인쇄
#include <iostream>
#include <fstream>

using namespace std;

class Logger
{
 public:
   Logger(const char* filename = "program.log")
     {
       logfile = new fstream(filename, fstream::out);
     }
   ~Logger()
     {
       logfile->close();
       delete logfile;
     }

   Logger& operator<<(const char* msg)
     {
       *logfile << msg;
       return *this;
     }
   Logger& operator<<(const int val)
     {
       *logfile << val;
       return *this;
     }
 private:
   fstream* logfile;
};

class MyClass
{
 public:
   MyClass(const int n)
     {
       data = n;
     }

   ~MyClass()
     {
     }

   friend ostream& operator<<(ostream& o, const MyClass& v)
     {
       return o << "MyClass data = " << v.data << "n";
     }

 private:
   int data;
};

int main()
{
   Logger mainlog;
   MyClass a(10);

   // These work fine
   cout << a;
   mainlog << "Bla " << 200 << "n";

   // This doesn't work
   //mainlog << a;

   return 0;
}



?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 Tool/etc Programming 게시판 관련 2 MoA 2014.11.01 42403
251 Tool/etc 잡담) AWS에 서버 띄워 놓으니 벼라별 리퀘스트가 다 날아 오네요 OBG 2023.03.11 6383
250 서버 PM2를 활용한 Node.js 무중단 서비스하기 OBG 2023.03.09 4799
249 Deeplearning LLaMA: INT8 edition OBG 2023.03.09 7804
248 서버 Caching In Node.js Applications OBG 2023.03.03 5943
247 Site 개발에 도움되는 사이트 (초보 개발자 꿀팁) OBG 2023.01.28 5600
246 Python FastAPI 톺아보기 - 부제: python 백엔드 봄은 온다 OBG 2023.01.25 5840
245 Database 수신 기한이 지난 데이터를 MySQL에서 삭제할 때의 이야기 OBG 2023.01.25 4991
244 Tool/etc How To Set Up Multi-Factor Authentication for SSH on Ubuntu 20.04 OBG 2023.01.17 5989
243 서버 Caching in Node.js to optimize app performance OBG 2023.01.16 5371
242 Web defer, async 스크립트 OBG 2023.01.10 5759
241 Tool/etc 쿠버네티스 클러스터 OBG 2022.11.11 6285
240 Web 카카오톡 웹버전 만들기 OBG 2022.11.09 5698
239 Deeplearning 시계열 데이터 예측 모델 OBG 2022.11.08 5826
238 Tool/etc AWS VPC 피어링 OBG 2022.11.03 6374
237 Deeplearning The State of AI & Art 2022 1 OBG 2022.10.06 7401
236 Deeplearning Stable Diffusion OBG 2022.09.27 7802
235 Python 2048 Game in Python OBG 2022.09.22 7082
234 Deeplearning Play Super Mario Bros with a Double Deep Q-Network OBG 2022.09.15 6982
233 Web Creating A Fixed-Length Queue In JavaScript Using Arrays OBG 2022.09.14 5412
232 Deeplearning RuntimeError: CUDA error: CUBLAS_STATUS_ALLOC_FAILED ... OBG 2022.09.06 8170
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 17 Next
/ 17