프로그램 작성

전문가 및 열성적 프로그래머를위한 Q & A

21
해결할 수없는 동일한 종속 어셈블리의 다른 버전간에 충돌이 발견되었습니다.
여러 프로젝트가있는 솔루션을 정리 한 다음 빌드하면 출력 창에 빌드 성공을보고합니다. 그러나 오류 목록 창을 볼 때 다음 경고가 표시됩니다. 해결할 수없는 동일한 종속 어셈블리의 다른 버전간에 충돌이 발견되었습니다. 이러한 상세 충돌은 로그 상세가 상세로 설정된 경우 빌드 로그에 나열됩니다. C : \ Program Files (x86) \ MSBuild \ 12.0 …

21
왜 finalize ()를 구현하겠습니까?
나는 많은 신인 Java 질문을 읽었 finalize()으며 아무도 finalize ()가 리소스를 정리하는 신뢰할 수없는 방법이라는 것을 아무도 분명히 알지 못했다는 것을 알게되었습니다. 누군가 Connections를 정리하는 데 사용한다는 의견을 보았습니다 .Connection이 닫혔다는 보장에 가까워 질 수있는 유일한 방법은 마침내 try (catch)를 구현하는 것이므로 정말 무섭습니다. CS에서 교육을받지는 않았지만 지금은 거의 10 …
371 java  jvm 

19
Swift에서 HTTP 요청을 어떻게합니까?
iBooks에서 Apple 의 Programming Language Swift 를 읽었 지만 Swift 에서 HTTP 요청 (cURL과 같은 것)을 만드는 방법을 알 수 없습니다. Obj-C 클래스를 가져와야합니까 아니면 기본 라이브러리 만 가져와야합니까? 아니면 네이티브 스위프트 코드를 기반으로 HTTP 요청을 할 수 없습니까?

18
안드로이드에서 listView 항목 사이에 공백을 설정하는 방법
listView Item에서 marginBottom을 사용하여 listView Item 사이에 공간을 만들려고했지만 여전히 항목이 서로 붙어 있습니다. 가능합니까? 그렇다면 구체적인 방법이 있습니까? 내 코드는 다음과 같습니다 <LinearLayout android:id="@+id/alarm_occurences" android:layout_width="fill_parent" android:orientation="vertical" android:layout_height="fill_parent" android:background="#EEEEFF" xmlns:android="http://schemas.android.com/apk/res/android"> <ListView android:id="@+id/occurences" android:layout_width="fill_parent" android:layout_height="fill_parent" /> </LinearLayout> 내 맞춤 목록 항목 : <com.android.alarm.listItems.AlarmListItem xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@drawable/alarm_item_background" android:layout_marginBottom="10dp" > <CheckedTextView …


5
JQuery를 사용하여 범위 값을 설정하는 방법
JQuery를 사용하여 범위 값을 설정하는 방법 예를 들어 ... 아래는 내 범위입니다 <span id="submittername"></span> 내 JQuery 코드에서 ... <script type="text/javascript"> jQuery.noConflict(); jQuery(document).ready(function($){ var invitee = $.ajax({ type: "GET", url: "http://localhost/FormBuilder/index.php/reports/getInvitee/<?=$submitterid;?>", async: false }).responseText; var invitee_email=eval('(' + invitee + ')'); var submitter_name=$.map(invitee_email.invites, function(j){ return j.submitter; }); alert(submitter_name); // alerts correctly $("#submittername").text(submitter_name); …
371 jquery 

6
ScrollView 내에서 LinearLayout이 확장되지 않음
나는이 LinearLayout내부 a를 ScrollView가지고 android:layout_height="fill_parent"있지만 전체 높이로 확장되지 않습니다 ScrollView. 내 레이아웃은 다음과 같습니다. level layout layout_width layout_height 1 LinearLayout fill_parent fill_parent 2 LinearLayout fill_parent wrap_content 3 (some irrelevant stuff) 2 ScrollView fill_parent fill_parent <-- this expands full height 3 LinearLayout fill_parent fill_parent <-- this does not (has orientation=vertical) (following …






21
여백과 패딩의 차이는 무엇입니까?
CSS에서 여백 과 패딩 의 차이점은 정확히 무엇입니까 ? 실제로 많은 목적을 달성하지 못하는 것 같습니다. 차이점이 어디에 있는지 (그리고 차이점을 아는 것이 왜 중요한지) 예를 들어 주시겠습니까?
371 css 

7
객체 키 배열 가져 오기
jQuery 또는 순수 JavaScript에서 JavaScript 객체의 키를 배열로 가져 오려고합니다. 이것보다 덜 장황한 방법이 있습니까? var foo = { 'alpha' : 'puffin', 'beta' : 'beagle' }; var keys = []; for (var key in foo) { keys.push(key); }


당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.