본문 바로가기

분류 전체보기

(86)
java - lambda public class Ramda { int max(int a, int b) {} return a > b ? a : b; }// (a,b) -> a>b ? a:b   int max(int a, int b) {} return a > b ? a : b; } // (a,b) -> a>b ? a:b  void printVar(String name, int i){ System.out.println(name + "="+i); // Ramda 방식 (name,i) -> sout(name+"="+i) int square (int x){ // Ramda 방식 -> x*x return x * x;} int roll() { return (int)(Math.random(..
JAVAerror로그 1. 범위를 벗어남.ArrayIndexOutOfBoundsException
오버라이딩 클래스 내가작성한내용package intermediate;public class InheritanceDemo { public static void main(String[] args) { Tiger tiger = new Tiger(); tiger.eat(); tiger.run(); Eagle eagle = new Eagle(); eagle.eat(); eagle.fly(); Goldfish goldfish = new Goldfish(); goldfish.eat(); goldfish.swimming(); } class Tiger{ String eye; String mouth; String l..
문자열 테스트 [문자열찾기] (메소드사용)public class StringEx3 { public static void main(String[] args) { Scanner in = new Scanner(System.in); // String s = "www.Java.com"; String s = ""; while (true) { System.out.println("URL입력하기"); s = in.nextLine(); String sLow = s.toLowerCase(); if (sLow.equals("bye")) break; if (s.contains("java")) { System.out.println("자바를포함합니다."); ..
열거형 public class EnumDemo { public static void main(String[] args) { System.out.println(People.FEMALE); System.out.println(People.TWO); int a = 2; if(People.TWO==a){ System.out.println("여성입니다."); } }}class People { //상수값을 묶어놓은 클래스 static final int MALE = 1; // MALE 상수 static final int FEMALE = 2; static final int ONE = 1; static final int TWO = 2;}   값이 변경되는 이슈가있음   [enum 열..
8/21 ch_05 배열,열거형 [배열로 5개의 요소 중 최소값 / 최대값 구하기]public class MaxMinDemo { public static void main(String[] args) { int[] scores = {30,10,70,90,100,}; int max = findMax(scores); // alt + Enter를통해 private static int findMin()를 만든다. int min = findMin(scores); // System.out.println(Arrays.toString(scores)); System.out.printf("배열의 최소값은 %d이고 최대값은 %d입니다.",min,max); }//최소값 구하기 private static int findMin..
[복사허용] 베텔기우스(ベテルギウス) - 유우리(優里) 가사 해석 ATIST - 유우리(優里)TITLE - 베텔기우스(ベテルギウス)아랍어로 '알자우자의 손'을 의미하는 단어로 라틴어에서 유례함오리온자리 7개 별중 하나 이고 지구에서 볼때 엄청나게 밝아졌다가 어두워짐을 반복하며시기는 알수 없지만 초신성의 폭발이 임박했음을 예측하는 전문가들도있다.https://namu.wiki/w/%EB%B2%A0%ED%85%94%EA%B2%8C%EC%9A%B0%EC%8A%A4 ">HTML 삽입미리보기할 수 없는 소스  그런데 번역은 틀린 부분 많습니다  지적해주시면 참고하겠습니다.(파파고,구글번역기참고)[가사 해석 ]空にある何かを見つめてたら하늘에 있는 무언가를 바라보다가それは 星だって 君がお しえてくれた그건 별이라고 네가 알려주었어まるで それは 僕らみ たいに 寄り添ってる마치 ..
[Bootstrap]step.2 Bootstrap 템플릿 활용하기 [템플릿 활용하기]         샘플의 아래내용을 하나씩 변경합니다.  a 태그들은 모두 수정합니다. 저자권없는 무료 이미지를 찾는방법 무료이미지 사용하기 by 372 ..
[Bootstrap]step.1 Bootstrap 사용 방법과 이해 [Bootstrap] 사용방법 우선 다운로드 합니다.https://getbootstrap.com/docs/5.3/getting-started/download/  다운로드 완료후  css폴더를 열어보면 아래와같이  CSS파일들이 들어있다 열어보면 엄청 많은 클래스가 정의되어있다    bootstrap 템플릿  사이트https://shapebootstrap.net/ Home - ShapeBootstrapA web designer designs websites and applications. His visual decisions directly affect brand perception and sometimes sales. That’s why the market needs talented web designe..
[Bootstrap]step.2 Bootstrap 템플릿 활용하기 [템플릿 활용하기]         샘플의 아래내용을 하나씩 변경합니다.  a 태그들은 모두 수정합니다. 저자권없는 무료 이미지를 찾는방법 무료이미지 사용하기 by 372 ..