목록2024/07/03 (3)
The Debugging Chronicles : "코드의 미학"
1. 첫번째 오류 - cors 에러분명히 서버와 프론트 코드가 맞게 잘 들어가 있었다. 하지만 다음과 같은 에러가 떴다. HTTP 204 성공 상태의 응답이 뜨고 있었고 서버에서도 성공 응답인 200 번 뜨고 있었다. 클라이언트와 서버 모두 cors 에러를 해결할 수 있는 조건들이 분명이 들어가있었다.app.use(express.urlencoded({ extended: false}));app.use( cors({ origin: "http://localhost:3000", method: ["GET", "POST", "DELETE", "PUT"], credential: true, })); const logoutApi = async () => { ..
메서드 주어가 있다 객체.메서드()객체 지향객체가 해당 기능을 수행하는 것 함수주어가 없다. 절차지향문제를 해결하는 것이 중요 package class01;import java.util.Random;import java.util.Scanner;class Student { int num; String name; int score; char grade; Student(int num,String name){ this(num,name,0); } Student(int num,String name,int score){ this.num=num; this.name=name; this.score=score; this.setGrade(); } void printInfo() { System.out.println(..
클래스의 상속과오버로딩 [요구사항대로 문제해결하기]모양 Shape class String name 이름 double area 넓이 String color 색 void draw() ㅁㅁ색 ㅁㅁ모양은 ㅁㅁ.ㅁㅁ만큼의 넓이 원 Circle class int radius 반지름 double PI 3.14 원주율 사각형 Rectangle class int x,y 가로,세로 요구사항 1. 이름이 없는 모양 객체는 없음 2. 어떤 모양의 색을 별도로 지정하지않으면 기본 색은 검정 3. 원의 경우, 반지름을 별도로 지정하지않으면 기본 1 4. new 사..