일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 네이버뉴스
- Python
- oracle
- 幼稚园杀手(유치원킬러)
- tomoto
- 과학백과사전
- Topics
- pytorch
- 자바
- spring MVC(모델2)방식
- 지마켓
- 토픽추출
- Gmarket
- 방식으로 텍스트
- jsp 파일 설정
- 크롤링
- lda
- word2vec
- test
- mysql
- r
- 파이썬
- db
- 이력서
- RESFUL
- java
- (깃)git bash
- 게시판 만들기
- 코사인 유사도
- Websocket
- Today
- Total
목록java (28)
무회blog
//클래스 구조 를 써보기 package com.Test; import java.io.IOException; //클래스 구조 를 써보기 // 00. 클래스는 : 클래스, 변수 , 메소드 로 크게 3개 부분으로 나뉠수 있다고 한다. // (다른것도 있지만 구조만 보자면 이렇다는 거임.) // 01. 변수는 : 전역 변수 , 지역 변수 로 나눌수 있다. // 02. 메소드는 메인메소드(main), 과 일반메소드(testMethod) 로 나눌수 있다 . // 03. // 클래스 public class Test_002 { String name = "Obama"; // 전역 변수 , 클래스 안에서 이동 가능 // 메인 메소드는 실행 영역임, (메인 쉐프가 주방장에서 요리할 리스트를 체크후 결정하여 진행 하는거랑 ..
JAVA에서 자주 쓰이는 형변환 11 Comments 자바에서 자주 쓰이는 형변환 시리즈를 모아보았다. 매번 까먹는 관계로 적어놔야 한다는;;; 출처는 이곳 입니다. int to String String str = Integer.toString(i); String str = "" + i; String to int int i = Integer.parseInt(str); int i = Integer.valueOf(str).intValue(); double to String String str = Double.toString(d); long to String String str = Long.toString(l); float to String String str = Float.toString(f); String..
public class RequalarExam { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.print("문자열 입력: "); String str = sc.nextLine(); // abc문자 포함 // if(str.matches(".*abc.*")){ // System.out.println("매칭"); // }else{ // System.out.println("비매칭"); // } // 자바에서는 \w 를 \\w 로 사용해야 함 // 숫자만 3자리 입력 // if(str.matches("[\\d]{3}")){ // System.out.println("매칭"); // }else{ // Sy..
static 변수/메소드 생성 없음 고용사용 정적 변수 메모리 1번 올라감 클래스 이름 . 접근 -> 정적 필드이름 클래스이름.정적필드 or 메소드 final static
import java.util.ArrayList; import java.util.List; public class javaTest001 { public static void main(String[] args) { System.out.println("java forEach test_시작"); // java forEach 사용 예제 001 testList_forEach001(); // 메서드에 static이 있을때 객체(인스턴스) 생성 하지 않고 접근 가능 // java forEach 사용 예제 002 javaTest001 jv = new javaTest001(); jv.testList_forEach002(); // // 메서드에 static이 없을때 객체(인스턴스) 생성 하고 접근 가능 } // -----..