돕자클럽 앱개발 투자 신용대출 재테크 P2P대출63 Comparing Strings and Portions of Strings 문자열과 문자열 일부의 비교 문자열와 문자열 일부의 비교 Comparing Strings and Portions of Strings 클래스 String에는 문자열과 문자열 일부를 비교하는 많은 메소드들이 들어 있습니다. 다음 표는 이들 메소드의 목록입니다. The String class has a number of methods for comparing strings and portions of strings. The following table lists these methods. 문자열 비교를 위한 메소드 Methods for Comparing Strings MethodDescriptionboolean endsWith(String suffix) boolean startsWith(String prefix)문자열이 메소드의 아규먼트.. 2016. 1. 5. Strings 문자열 문자열 Strings 자바 프로그래밍에서 널리 사용되는 문자열(Strings)은 일련의 글자들(characters)입니다. 자바 프로그래밍 언어에서, strings은 객체입니다. Strings, which are widely used in Java programming, are a sequence of characters. In the Java programming language, strings are objects. 자바 플랫폼은 문자열을 생성하고 조작하기 위한 클래스 String을 제공합니다. The Java platform provides the String class to create and manipulate strings. 문자 만들기 Creating Strings string을 생성하는 가.. 2016. 1. 5. Characters 글자 글자 Characters 대부분의 경우, 1개의 글자 값을 사용하는 경우 primitive char type을 사용할 것입니다. 예를 들면: Most of the time, if you are using a single character value, you will use the primitive char type. For example:char ch = 'a'; // Unicode for uppercase Greek omega character char uniChar = '\u03A9'; // an array of chars char[] charArray = { 'a', 'b', 'c', 'd', 'e' }; 하지만 객체로 char를 사용할 때가 있는데 - 예를 들면 객체가 예상될 때 메소드 argum.. 2016. 1. 5. Beyond Basic Arithmetic 기본 산술을 넘어서 기본 산술을 넘어서 Beyond Basic Arithmetic 자바 프로그래밍 언어는 산술 연산자 +, -, *, /, %를 갖고 기본적 연산을 지원합니다.java.lang 패키지 안의 클래스 Math는 보다 앞선 수학적 계산 수행을 위한 메소드와 상수를 지원합니다.The Java programming language supports basic arithmetic with its arithmetic operators: +, -, *, /, and %. The Math class in the java.lang package provides methods and constants for doing more advanced mathematical computation. Math 클래스 안의 메소드들은 모두 s.. 2016. 1. 5. Abstract Methods and Classes 추상적 메소드와 클래스 추상적 메소드와 클래스 Abstract Methods and Classes abstract class는 abstract로 선언된 클래스 입니다 - abstract 메소드들이 포함될 수도 포함하지 않을 수도 있습니다. abstract class들은 인스턴스화 될 수 없지만 subclass는 될 수 있습니다..abstract method는 아래와 같이 구현 없이(중괄호 없이 semicolon만 있는) 선언된 메소드 입니다:An abstract class is a class that is declared abstract—it may or may not include abstract methods. Abstract classes cannot be instantiated, but they can be subcla.. 2016. 1. 5. Polymorphism 다형성 다형성 Polymorphism 다형성(polymorphism)의 사전적 정의는 생물체나 종이 다양한 형태(forms) 또는 단계(stages)를 가질 수 있는 생물학 원리를 가리킵니다. 이 원리는 자바 언어와 같은 객체-지향 프로그래밍 및 언어에도 적용될 수 있습니다. 클래스의 서브클래스는 서브클래스 만의 독특한 행위를 정의하면서 여전히 부모 클래스의 동일한 기능의 일부를 공유할 수 있습니다.다형성은 클래스 Bicycle을 조금 수정하여 입증할 수 있습니다. 예를 들어, 메소드 printDescription을 현재 인스턴스에 저장된 모든 데이터를 표시하는 클래스에 추가할 수 있습니다.The dictionary definition of polymorphism refers to a principle in b.. 2016. 1. 5. 이전 1 2 3 4 5 6 ··· 11 다음