Git Product home page Git Product logo

cpp-study's Introduction

cpp-study

int main()
{
std::cout << "화이팅""; << std::end1; 
std::cout << "떙큐";
}

return 0;

end라인 1

class mainGame
{
public
}

생성자 : 객체가 생성이 됨과 동시에 실행되는 곳

mainGame :: ma

소멸자 : 객체가 종료됨과 동시에 실행되는 곳

정적할당

mainGame mg;

동적할당

mainGame* mg1 = new mainGame;
delete mg1;
return 0; 

상속

class child : public mother
{
}
class mainGame
{
public:
//그냥 아이템 사용하는 함수
 void UseItem();
 //코인의 가스를 소모하는 함수
 void UseItem(Int gas);
 
 mainGame();
 ~mainGame();
 }
vrectorTest::vectorTest()
{
//뱍터에 데이터를 삽입하려면 push_back()
_vNum.push_back(1);
_vNum.push_back(122);
_vNum.push_back(122222);

///백터안에 데이터의 개수를 알려면 size()
cout <<"백처안에 데이터 갯수:"<<__vNum.size() << end1;

for (int i =0; i<_vNum.size(); ++i)
{
}

cpp-study's People

Contributors

kyunghyunhan avatar

Stargazers

ming avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.