일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- mac hadoop 설정
- Could not open client transport with JDBC Uri: jdbc:hive2://localhost:10000
- code=0)
- hadoop safe mode leave
- Resources are low on NN
- 이더리움
- is not allowed to impersonate hive (state=08S01
- hive beeline 에러
- 기업 조사 빨리 하는 법
- hive beeline
- hive beeline 설정
- 자소서 시간 줄이기
- mac hadoop 설치
- 도커 교과서
- mac hive 3
- 카카오 2020 코딩테스트
- Failed to connect to localhost:10000
- mac hadoop
- hadoop safe mode
- 카카오 2020 코테
- 자소서 빨리 쓰는 법
- mac hive
- 자소서 너무 오래 걸림
- 이더리움 #ethereum
- hive beeline 실행
- Safe mode is ON
- 백준 18428
- 카카오 자물쇠와 열쇠
- 자소서 빨리
- mac hadoop 3
- Today
- Total
목록Programming Language (49)
A seeker after truth
* (범한서적, 2013)을 참고하여 작성됨 1. TMI of "->" 연산자 p를 Passenger 구조체에 대한 포인터라 하자. 이러한 경우 *p는 실제 구조체를 참조하고, mealPref 필드와 같은 멤버들에 접근할 경우 (*p).meaPref와 같이 나타낼 수 있다. 이러한 구조체와 같은 복잡한 객체는 종종 동적으로 할당되기 때문에, C++에선 -> 연산자를 이용해 좀 더 간편하게 표현할 수 있게 했다. pointer_name->member는 (*pointer_name).member와 같은 의미다. 2. delete&new와 메모리 유출 delete 연산자는 new 연산자로 생성된 객체에만 적용되어야 한다(원리를 생각해보면 당연함). Java가 자동 가비지 콜렉션을 제공하는 것과 대조된다. 동적으..
1. type Request(구조체) A Request represents an HTTP request received by a server or to be sent by a client. The field semantics differ slightly between client and server usage. https://golang.org/pkg/net/http/#Request 2. type ResponseWriter(인터페이스) A ResponseWriter interface is used by an HTTP handler to construct an HTTP response. https://golang.org/pkg/net/http/#ResponseWriter 3. func HandleFunc ..

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..