블로그
- 자바 학습 로드맵 (자바지기 박재성님) v=3mgMwObtaQ0&t=1721s #내용 정리 시간이 없다 : 이클립스 -> Java -> JSP 서블릿 -> Spring + MyBatis 시간이 많다 CSS JS/JQuery Database 모델 1 방식 개발 OOP/디자인 패턴 Sping JDBC -> Spring JDBC -> Callback Interface, Class
- 찡이형의 JAVA 강좌 :: 02. 연산자 클래스 생성저번 시간에 만든 프로젝트에 이번 강좌 내용을 작성할 클래스를 만들어봅시다. ctrl + N 을 이용하여 Class 를 선택해줍니다.클래스 이름을 지정하고 ctrl + V
- [CADI] 5주차 미션# Intent 예제 MainActivity.java public class MainActivity extends AppCompatActivity { Button btn; EditText name, age R.id.address); btn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v)
- c# ToString() Format McGraw-Hill (March 8, 2002) ISBN: 0072134852 */ // Use ToString() to format values. using System; public class ToStringDemo { public static void Main() { double v = 17688.65849; double v2 = 0.15; int x = 21; string
- about VR Overview using UnityEngine; using UnityEngine.VR; public class ToggleVR : MonoBehaviour { //Example of toggling VRSettings private void Update () { //If V is pressed, toggle VRSettings.enabled if (Input.GetKeyDown
- J. Cole (제이 콜) Wet Dreamz 가사/해석/뮤비 v=eCGV26aj-mM [Intro] Let me take y'all back man 옛날 이야기 해줄게 As I do so well 내가 원래 잘 해주는 것처럼 [Verse 1] like that 전혀 그렇지 않았지 Man, it wasn't nothin' like that first time 처음엔 전혀 그렇지 않았어 She was in my math class
- [ myNote ] refactoring pattern go together parameters and calculation is in B class bz logic is in A class https://www.youtube.com/ v=SzFe-C_ZHBI Replace Temp with Query temp var to store the result of the expression you could put that
- Multi V Super Ⅳ Class 1 국내 최고 기술력으로 전 모델 1등급획득
- 이벤트 리스너 구현 방법 (){ @Override public void onClick(View v){ process(); }); Activity가 리스너 구현public class ButtonActivityMain extends Activity implements OnClickListener{ public void onClick(View v){ process(); }}
- ~ 연산자(C# 참조) reference : http://msdn.microsoft.com/ko-kr/library/d2bd4x66(v=vs.90).aspx~ 연산자는 피연산자에 대한 비트 보수 연산을 수행하여 (int v in values) { Console.WriteLine("~0x{0:x8} = 0x{1:x8}", v, ~v); } } } /* Output: ~0x00000000 =