이클립스(487)
-
Error-D/dalvikvm(1904): newInstance failed: Lkr/android/actionbardemo/MainActivity; not accessible to Landroid/app/Instrumentation;
오류 메시지 07-24 02:42:16.148: D/dalvikvm(1904): newInstance failed: Lkr/android/actionbardemo/MainActivity; not accessible to Landroid/app/Instrumentation; 해결방법 클래스에 대한 접근 지정자를 확인해 보시기 바랍니다. MainActivity클래스에 접근지정자가 빠져 있어서 실행과 동시에 중지 되어 버립니다. public으로 접근지정자를 선언해주면 해결됩니다.
-
Error-All versions of the libraries must be the same at this time.
오류 메시지 [2014-07-06 15:47:10 - HellowAndroid] Found 2 versions of android-support-v4.jar in the dependency list, [2014-07-06 15:47:10 - HellowAndroid] but not all the versions are identical (check is based on SHA-1 only at this time). [2014-07-06 15:47:10 - HellowAndroid] All versions of the libraries must be the same at this time. [2014-07-06 15:47:10 - HellowAndroid] Versions found are: [2014-0..
-
Error-timeout Launch canceled!, 애뮬레이터 에러
Error Message Failed to install 51BrowserDemo2.apk on device 'emulator-5554': timeout Launch canceled! 해결방법 에뮬레이터 다시 구동
-
실수(실수형) / 실수형 데이터 정밀도 / float.h
실수형· 실수형 데이터를 저장하는 변수의 자료형· 소수점을 가진 실수의 값을 표현 sizeof(float) ≤ sizeof(double) ≤ sizeof(long double) float.h· 실수형 데이터 표현 범위를 자동으로 알려주는 라이브러리· 실수형 데이터 표현의 최소값(MIN)과 최대값(MAX) 상수 제공 99.9 99.99 99.999 99.9999
-
Error-"app_name" is not translated in
에러 내용 "app_name" is not translated in af, am, ar, bg, ca, cs, da, de, el, en-rGB, en-rIN, es, es-rUS, et-rEE, fa, fi, fr, fr-rCA, hi, hr, hu, hy-rAM, in, it, iw, ja, ka-rGE, km-rKH, ko, lo-rLA, lt, lv, mn-rMN, ms-rMY, nb, nl, pl, pt, pt-rPT, ro, ru, sk, sl, sr, sv, sw, th, tl, tr, uk, vi, zh-rCN, zh-rHK, zh-rTW, zu Issue: Checks for incomplete translations where not all strings are translated Id..
-
Ex12-정수형의 언더플로우 & 오버플로우
정수형의 언더플로우 & 오버플로우 강의내용 소스코드 #include int main(void) { char num1=-129; // 최소값보다 -1만큼 작은 값 저장(언더플로우) char num2=128; // 최대값보다 +1만큼 큰 값 저장(오버플로우) printf("%d \n", num1); // 127 출력 printf("%d \n", num2); // -128출력 num1=-130; // 최소값(-128)보다 -2만큼 작은 값 저장(언더플로우) num2=129; // 최댜값(127)보다 +2만큼 큰 값 저장(오버플로우) printf("%d \n", num1); // 126 출력 printf("%d \n", num2); // -127출력 return 0; } 출력내용