TAILIEUCHUNG - DATA STRUCTURES AND ALGORITHMS USING VISUAL BASIC.NET phần 5

Chúng tôi đã đi đến tất cả các khó khăn để phát triển các lớp học để chúng ta có thể sử dụng một Đối với mỗi câu lệnh để lặp, hoặc một số kiểu dữ liệu cấu trúc khác. Trong chương này, chúng ta xem xét làm thế nào để tạo ra các từ điển cơ bản và làm thế nào để sử dụng các phương pháp được thừa kế của lớp DictionaryBase. | 158 STRINGS THE STRING CLASS AND THE STRINGBUILDER CLASS These methods are useful for getting data into your program from another source using the Split method and sending data out of your program to another source using the Join method . Methods for Comparing Strings There are several ways to compare String objects in . The most obvious way is to use the relational operators which for most situations will work just fine. However there are situations where other comparison techniques prove to be more useful such as if we want to know whether a string is greater than less than or equal to another string. For these type of situations we have to use methods found in the String class. Strings are compared with each other much as we compare numbers. However since it s not obvious whether a is greater than or less than H we have to have some sort of numeric scale to use. That scale is the Unicode table. Each character actually every symbol has a Unicode value which the operating system uses to convert a character s binary representation to that character. You can determine a character s Unicode value by using the ASC function. ASC actually refers to the ASCII code of a number. ASCII is an older numeric code that precedes Unicode and the ASC function was first developed before Unicode subsumed ASCII. The ASC function takes a character as an argument and returns the numeric code for that character. For example consider the following code Dim charCode As Integer charCode ASC a Here the value 97 is stored in the variable. Two strings are compared then by actually comparing their numeric codes. The strings a and b are not equal because code 97 is not code 98. The CompareTo method actually lets us determine the exact relationship between two String objects. We ll see how to use that method shortly. The first comparison method we ll examine is the Equals method. This method is called from a String object and takes another String object as its argument. It then compares .

TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.