coding(61)
-
32DateDemo-DatePicker/TimePickerDiaglog사용하여 날짜와 시간 변경하기
DatePicker/TimePickerDiaglog사용하여 날짜와 시간 변경하기 강의 내용 출력결과 강의 내용 activity_main.xml RelativeLayout변경 Graphical Layout > Form Widgets-TextView 추가 Graphical Layout > Form Widgets-Button추가 Graphical Layout > Form Widgets-Button추가 MainActivity.java //Calendar객체생성 //기본 포멧 생성 //DatePickerDiaglog 사용시 발생하는 이벤트를 처리하는 객체 생성 //TimePickerDialog 사용시 발생하는 이벤트를 처리하는 객체 생성 //날짜와 시간 표시 메소드 - updateDateAndTime //이벤트소..
-
System.Windows.Forms 어셈블리 추가하기
System.Windows.Forms 어셈블리 추가하기 Solution Explorer 에서 References항목 선택 >> 마우스 우클릭 >> Add Reference...클릭 왼쪽항목에서 Framework 선택 >> System.Widows.Forms항목에 체크 >> OK 추가 완료
-
Error - Could not find a version that satisfies the requirement tensorflow (from versions: ) 해결방법
에러 메시지 Could not find a version that satisfies the requirement tensorflow (from versions: ) C:\Python\Python36-32\Scripts>pip install tensorflow Collecting tensorflow Could not find a version that satisfies the requirement tensorflow (from versions: ) No matching distribution found for tensorflow C:\Python\Python36-32\Scripts> 오류 원인 텐서플로우 설치 파일은 64bit(x64)이기 때문에 32bit(x86)용 파이썬으로 설치를 시도할 경우 해당 에..
-
Ex-포인터 변수에 2차원 배열의 시작 주소 저장
포인터 변수에 2차원 배열의 시작 주소 저장 오류메시지 p[0][0]표현은 존재하지 않습니다. 왜냐하면 p는 1차원 배열이므로 1차원 형태로만 접근하게 됩니다. printf("%x\n", &p[0][0]); 소스코드 #include int main(void) { // 2차원 배열 int array[2][3]={10,20,30,40,50,60}; // 1차원 포인터변수 int* p=NULL; //포인터 변수에 배열의 시작 주소를 저장 p=array; // p=&array[0][0]; // p=array[0]; // p=*(array+0); // p[0][0]표현은 존재하지 않음. 왜냐하면 p는 1차원 배열이므로 1차원 형태로만 접근하게 됩니다. printf("------------\n"); printf("..
-
글꼴 font 폰트 삭제/제거하기 - Windows 윈도우
글꼴 font 폰트 삭제/제거하기 - Windows 윈도우 Windows 설정 오픈 설정 검색 글꼴 검색 글꼴 폰트 삭제하기 글꼴 삭제 확인
-
StringBuilder클래스의 인스턴스 갯수
StringBuilder클래스의 인스턴스 갯수 · 문자열의 복잡한 조합의 과정에서는 StringBuilder의 인스턴스가 활용되며 이 때문에 추가로 생성되는 인스턴스의 수는 최대 두 개입니다 · StringBuilder인스턴스생성시 하나 생성되며 이 인스턴스의 참조값을 가지고 append()메소드가 호출되며 최종적으로 문자열로 전환하는 toString( )가 호출될 때 두번째 인스턴스가 생성되어지게 됩니다. //숫자 + 문자열 + 숫자 String str1=3+"Java"+7; String str2=new StringBuilder().append(3).append("Java").append(7).toString();