본문 바로가기

CS155

Dart OOP 1. 생성자관련 a. 생성자에서 입력받는 변수들은 일반적으로 final 키워드 사용 i. 인스턴스화한 다음에 혹시라도 변수의 값을 변경하는 실수를 막기 위함 ii. final String name; b. 생성자 선언은 클래스와 같은 이름이어야 함 c. 함수의 매개변수를 선언하는 것처럼 매개변수를 지정 i. Diligejy(String name) : this.name = name; d. 일반적으로 private variable은 클래스 내부에서만 사용하는 변수를 칭하지만 다트 언어에서는 같은 파일에서만 사용하는 변수 e. 요즘 객체지향 프로그래밍 할 때 변수의 값을 불변성(Immutable - 인스턴스화 후 변경할 수 없는) 특성으로 사용하기 때문에 setter는 거의 사용하지 않음. getter는 종종 .. 2022. 11. 13.
API를 모른다면 개발공부 덜한거임 | 웹개발자 포트폴리오 프로젝트 추천 | 무료 API추천 https://www.youtube.com/watch?v=fBbRFhAGEIE&ab_channel=%EC%BD%94%EB%94%A9%EC%95%8C%EB%A0%A4%EC%A3%BC%EB%8A%94%EB%88%84%EB%82%98 2022. 11. 12.
Pandas SettingWithCopyWarning https://stackoverflow.com/questions/20625582/how-to-deal-with-settingwithcopywarning-in-pandas How to deal with SettingWithCopyWarning in Pandas Background I just upgraded my Pandas from 0.11 to 0.13.0rc1. Now, the application is popping out many new warnings. One of them like this: E:\FinReporter\FM_EXT.py:449: SettingWithCopyWarning: A va... stackoverflow.com https://emilkwak.github.io/pandas-.. 2022. 10. 31.
BigQuery 1. Identify Duplicate Rows a. Query Syntax https://cloud.google.com/bigquery/docs/reference/standard-sql/query-syntax Seeing a sample amount of data may give you greater intuition for what is included in the dataset. To preview sample rows from the table without using SQL, click the preview tab. Scan and scroll through the rows. There is no singular field that uniquely identifies a row, so you n.. 2022. 9. 20.
한눈에 보기 - Flask Tutorial Note Web App https://www.youtube.com/watch?v=Y8-jJ8yVFag TIL 1. 루프백 주소 2. 2022. 9. 20.
Infrastructure-as-Code: Easy Cloud Deployment In Python https://www.youtube.com/watch?v=YGcd0lAQCl8 2022. 9. 19.