목록분류 전체보기 (245)
일상 코딩
https://codesandbox.io/dashboard/home?workspace=f64d874b-5477-4f6d-a4bf-494a9014e10e CodeSandbox CodeSandbox is an online editor tailored for web applications. codesandbox.io
#include #include using namespace std; class Cents { private: int m_cents; public: Cents(int cents = 0) { m_cents = cents; } int getCents() const { return m_cents; } int &getCents() { return m_cents; } Cents operator+(const Cents &c2) { return Cents(this->m_cents + c2.getCents()); } bool operator ! () const { return (m_cents == 0) ? true : false; } friend std::ostream &operator
※ 입출력 연산자 "≪", "≫" 오버로딩 예제 ● 파일 입출력 라이브러리 "fstream"을 이용한 "out.txt"로 결과값 출력. #include #include using namespace std; class Point { private: double m_x, m_y, m_z; public: Point(double x = 0.0, double y = 0.0, double z = 0.0) : m_x(x), m_y(y), m_z(z) {} double getX() { return m_x; } double getY() { return m_y; } double getZ() { return m_z; } friend std::ostream& operator point.m_z; // out
https://pearlluck.tistory.com/46 DB JOIN 정리(INNER/LEFT/RIGHT/OUTER) join(조인) 둘 이상의 테이블을 연결해서 데이터를 검색하는 방법 연결하려면 테이블들이 적어도 하나의 컬럼을 공유하고 있어야함 이 공유하고 있는 컬럼을 PK 또는 FK값으로 사용 종류 1. INNER pearlluck.tistory.com
출처 https://gist.github.com/mcleary/b0bf4fa88830ff7c882d C++ Timer using std::chrono C++ Timer using std::chrono. GitHub Gist: instantly share code, notes, and snippets. gist.github.com #include #include #include #include class Timer { public: void start() { m_StartTime = std::chrono::system_clock::now(); m_bRunning = true; } void stop() { m_EndTime = std::chrono::system_clock::now(); m_bRunning ..
https://www.mysql.com/ MySQL Over 2000 ISVs, OEMs, and VARs rely on MySQL as their products' embedded database to make their applications, hardware and appliances more competitive, bring them to market faster, and lower their cost of goods sold. Learn More » www.mysql.com # 타이핑 게임 제작 및 기본완성 import random import time # py sound for linux, pip install pyglet 설치 import pyglet import datetime import..
#include using namespace std; class Cents { private: int m_cents; public: Cents(int cents = 0) { m_cents = cents; } int getCents() const { return m_cents; } int &getCents() { return m_cents; } Cents operator + (const Cents &c2) { return Cents(this->m_cents + c2.getCents()); } }; int main() { Cents cents1(6); Cents cents2(8); // Cents sum; // add(cents1, cents2, sum); cout
#include using namespace std; class Fruit { public: enum FruitType { APPLE, BANANA, CHERRY, }; class InnerClass { }; struct InnerStruct { }; private: FruitType m_type; public: Fruit(FruitType type) : m_type(type) { } FruitType getType() { return m_type; } }; int main() { Fruit apple(Fruit::APPLE); if (apple.getType() == Fruit::APPLE) { cout
1. 익명객체 #include using namespace std; class A { public: int m_value; A(const int &input) : m_value(input) { cout
# 타이핑 게임 제작 및 기본완성 import random import time # py sound for linux, pip install pyglet 설치 import pyglet import sqlite3 import datetime import keyboard words = [] # 영어 단어 리스트(1000개 로드) game_cnt = 1 # 게임 시도 횟수 corr_cnt = 0 # 정답 개수 check = dict() # 중복 단어 확인 dictionary # DB 생성 conn = sqlite3.connect("wordgameDB.db",isolation_level=None) cur = conn.cursor() # DB 테이블 생성 # id 자동 증가 # 정답수 # 걸린 시간 # 저장한 시..