블로그
- ◈ 전북 남원 봉화산 철쭉~분홍터널 ◈ <embed name="CLIPBOARDS1491378165404325100918" width="1" height="1" align="middle" class="F1491378163380881100
- 스마트 에디터에 내용 초기화 및 내용 넣기(태그 제거없이) 일반적으로 textarea 태그에 내용을 넣을때는 이렇게 또는 스크립트나 제이쿼리를 통해서 class 또는 id 값을 주고 밀어넣는 경우가 있다. ", [""]); //내용초기화 oEditors.getById["content"].exec("PASTE_HTML", ["내용 내용"]); //내용밀어넣기 $('textarea[name
- RuntimeException 오류 REASON 1 : Duplicate of class file name SOLUTION : when your refactoring of some of your cl.......
- [영진전문대학 컴퓨터정보계열] 자료구조 실습 . */ /** * * @author user */ public class Card { private String name="무명씨"; private String tel=""; public , String tel, Card next) { this.name = name; this.tel = tel; this.next = next; } public Card getNext(
- [영진전문대학 컴퓨터정보계열] 자료구조 실습 . */ /** * * @author user */ public class Card { private String name; private Card left; private Card right; public Card(String name) { this.name = name; left = null; right = null; } public Card() { this.name
- RegisterActivity com.google.firebase.iid.FirebaseInstanceId; import com.stillthere.miniproject.Async.MemberRegisterTask; public class extends AppCompatActivity { EditText number; EditText user_id; EditText pwd; EditText chk_pwd; EditText name
- [POWER Java] 제5장 - 변수, 연산자, 수식 System.in); System.out.print("What's your name? : "); name = input.nextLine(); System.out.print("How old are you? : "); age = input.nextIn.......
- [CADI] 5주차 미션# Intent 예제 MainActivity.java public class MainActivity extends AppCompatActivity { Button btn; EditText name, age setContentView(R.layout.activity_main); init(); } void init() { btn = (Button)findViewById(R.id.btn); name
- Data Types : 9주차 자료의 특징을 '기술' 한다. identifier 는 variable 의 name 이다. 따라서 variable 에 속한다. class Test { Test* obj; } 여기서 obj 는 object 가 아니고 reference variable 이다.
- [영진전문대학 컴퓨터정보계열] JAVA 특강 stuNum; String name; String phone; public Student(int stuNum, String name, String phone){ this.stuNum = stuNum; this.name = name; this.phone = phone; } } class StuCTRL{ LinkedList list = new LinkedList(