본문 바로가기
반응형

tech documents/memo27

[Java] 생성자 1. package org.opentutorials.javatutorials.Inheritance.example4; public class ConstructorDemo { public ConstructorDemo(int param1) {} public static void main(String[] args) { ConstructorDemo c = new ConstructorDemo(); } } 이 경우 매개변수가 '있는' 생성자를 정의 하였기 때문에, 자동으로 기본 생성자(매개변수가 없는 생성자)가 정의되지 않는다. 따라서 아래와 같이 기본 생성자도 정의해 주어야 한다. package org.opentutorials.javatutorials.Inheritance.example4; public class .. 2020. 7. 29.
[Java] 클래스 1. 인스턴스 메소드는 클래스 맴버에 접근 할 수 있다. 2. 클래스 메소드는 인스턴스 맴버에 접근 할 수 없다. - 인스턴스 변수는 인스턴스가 만들어지면서 생성되는데, 클래스 메소드는 인스턴스가 생성되기 전에 만들어지기 때문에 클래스 메소드가 인스턴스 맴버에 접근하는 것은 존재하지 않는 인스턴스 변수에 접근하는 것과 같다. 2020. 7. 29.
[Gatsby] gatsby develop 오류 gatsby-node를 수정한뒤 여러번 gatsby develop으로 재시작을 하여도, 계속 graphql로 가져온 데이터를 page component로 주지 않아서 `data is undefined` 라는 오류가 사라지지 않았다. 근데 아무리 다르게 해봐도 official docs를 따라 한거라서 코드에 문제는 없다. 계속 해봐도 안되길래 짜증났었는데 어느 순간 된다. 저번에도 이렇더니 이번에도 이렇다. 아주 싸발적이다. 2020. 7. 28.
[React] StaticRouter app.get('/*', (req, res) => { const context = {}; const app = ReactDOMServer.renderToString( ); }); The StaticRouter component expects a location and a context prop. We pass the current url (Express’ req.url) to the location prop and an empty object to the context prop. The context object is useful to store information about a specific route render, and that information is then made available to.. 2020. 7. 12.
[React] react-router-dom 1. 라우터 자체는 아무것도 렌더링 하지 않는다. 단지 현재 URL에 따른 컴포넌트의 렌더링 여부를 결정한다. 만약 path 프로퍼티가 현재의 URL과 일치할 경위 Route는 MyComponent 컴포넌트로 대체된다. 2. 은 복수의 자식을 갖는 것을 좋아하지 않기 때문에, 요소를 포함해야 한다. (리액트&리액트 네이티브 통합 교과서) 2020. 7. 11.
[React] Immutable.js 활용한 onClick event onClick = id => () => { this.data = this.data.update('items', items => items.update( items.indexOf(items.find(i=> i.get('id') === id)), item => item.update('done',d=>!d) ) ) }; 2020. 7. 10.
[Javascript] Array.prototype.map 1. let arr = [1,2,3,4]; arr.map(i=>i+2); //[3,4,5,6] map은 리턴된 값들의 배열을 반환함. 2020. 7. 10.
반응형