متد ()lastindexOf با پارامترهای مختلف |
int lastindexOf(int ch) |
package javalike; public class Test5 { public static void main(String[] args) { String str = "javalike"; System.out.println(str.lastindexOf('a')); } } |
3 |
int lastindexOf(int ch, int fromindex): |
package javalike; public class Test5 { public static void main(String[] args) { String str = "javalike"; System.out.println(str.lastindexOf('k', 6)); } } |
-1 |
package javalike; public class Test5 { public static void main(String[] args) { String str = "javalike"; System.out.println(str.lastindexOf('a', 6)); } } |
3 |
int lastindexOf(String str): |
package javalike; public class Test5 { public static void main(String[] args) { String str = "javalikejava"; System.out.println(str.lastindexOf("java")); } } |
8 |
String str = "javalikejava"; |
System.out.println(str.lastindexOf("java")); |
int lastindexOf(String str, int fromindex): |
package javalike; public class Test5 { public static void main(String[] args) { String str = "javalikejava"; System.out.println(str.lastindexOf("java",5)); } } |
0 |
String str = "javalikejava"; |
System.out.println(str.lastindexOf("java",5)); |
package javalike; public class LastindexOfExample { public static void main(String args[]) { String str1 = new String("This is a javalike tutorial"); String str2 = new String("java"); String str3 = new String("like"); String str4 = new String("likes"); System.out.println("Last 'a' in str1: " + str1.lastindexOf('a')); System.out.println("Last 'a' in str1 whose index<=15:" + str1.lastindexOf('a', 15)); System.out.println("Last 'a' in str1 whose index<=30:" + str1.lastindexOf('a', 30)); System.out.println("Last occurrence of str2 in str1:" + str1.lastindexOf(str2)); System.out.println("Last occurrence of str2 in str1 before 15:" + str1.lastindexOf(str2, 15)); System.out.println("Last occurrence of str3 in str1:" + str1.lastindexOf(str3)); System.out.println("Last occurrence of str4 in str1" + str1.lastindexOf(str4)); System.out.println("Last occurrence of 'is' in str1:" + str1.lastindexOf("is")); System.out.println("Last occurrence of 'is' in str1 before 4:" + str1.lastindexOf("is", 4)); } } |
Last 'a' in str1: 25 Last 'a' in str1 whose index<=15:13 Last 'a' in str1 whose index<=30:25 Last occurrence of str2 in str1:10 Last occurrence of str2 in str1 before 15:10 Last occurrence of str3 in str1:14 Last occurrence of str4 in str1-1 Last occurrence of 'is' in str1:5 Last occurrence of 'is' in str1 before 4:2 |
دوره های آموزشی برنامه نویسی
انجام پروژه های برنامه نویسی
تدریس خصوصی برنامه نویسی
بیش از 7 سال از فعالیت جاواپرو میگذرد
جاواپرو دارای مجوز نشر دیجیتال از وزارت فرهنگ و ارشاد اسلامی است
جهت ارتباط مستقیم با جاواپرو در واتساپ و تلگرام :
09301904690
بستن دیگر باز نشو! |