일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- hive beeline
- code=0)
- mac hive 3
- hive beeline 설정
- 자소서 빨리
- Safe mode is ON
- hive beeline 에러
- Could not open client transport with JDBC Uri: jdbc:hive2://localhost:10000
- Resources are low on NN
- 카카오 2020 코딩테스트
- 카카오 자물쇠와 열쇠
- Failed to connect to localhost:10000
- hadoop safe mode leave
- 카카오 2020 코테
- is not allowed to impersonate hive (state=08S01
- hadoop safe mode
- 백준 18428
- 자소서 빨리 쓰는 법
- hive beeline 실행
- 자소서 시간 줄이기
- 도커 교과서
- 기업 조사 빨리 하는 법
- 이더리움
- mac hadoop 설정
- mac hadoop
- mac hadoop 3
- 자소서 너무 오래 걸림
- mac hadoop 설치
- mac hive
- 이더리움 #ethereum
- Today
- Total
목록Programming Language/C++ (12)
A seeker after truth

1. Function Templates 파라미터의 타입을 한가지로 특정하고자 하지 않을 때 사용하며, 제네릭과 같은 개념 template T sum(T a, T b) { return a+b; } int main () { int x=7, y=15; cout
1. Inheritance class Mother { public: Mother() {}; void sayHi() { cout attack(); e2->attack(); In this example, objects of different but related types are referred to using a unique type of pointer (Enemy*), and the proper member function is called every time, just because they are virtual.
1. separate files for a class - The header file (.h) holds the function declarations (prototypes) and variable declarations. It currently includes a template for our new MyClass class, with one default constructor. MyClass.h #ifndef MYCLASS_H #define MYCLASS_H class MyClass { public: MyClass(); protected: private: }; #endif // MYCLASS_H MyClass.cpp #include "MyClass.h" MyClass::MyClass() { //cto..
you can access a pseudo random number generator function that's called rand(). #include #include using namespace std; int main() { cout
In a C++ program, memory is divided into two parts: The stack: All of your local variables take up memory from the stack. The heap: Unused program memory that can be used when the program runs to dynamically allocate the memory. Many times, you are not aware in advance how much memory you will need to store particular information in a defined variable and the size of required memory can be deter..
- Whitespace, such as spaces, tabs, and newlines, is also ignored, although it is used to enhance the program's visual attractiveness. - In C++, streams are used to perform input and output operations. In most program environments, the standard default output destination is the screen. In C++, cout is the stream object used to access it. - cout is used in combination with the insertion operator...