Chương trình Java để kết nối chuỗi – https://final-blade.com

Viết một chương trình Java cho Concat Strings với một ví dụ. Có nhiều cách để thực thi nối chuỗi trong Java và chúng tôi đề cập hầu hết những cách đó. Chúng ta hoàn toàn có thể sử dụng những hàm tích hợp, gồm có concat, append và hàm StringBuffer. Ngoài những điều này, hãy sử dụng toán tử số học + để đạt được điều tương tự như .

Trong ví dụ java này, chúng tôi đã sử dụng hàm String để nối con_str2 với con_str1 và gán đầu ra cho một str3 mới.

import java.util.Scanner;

public class Example {
	private static Scanner sc;
	
	public static void main(String[] args) {
		String con_str1;
		String con_str2;
		
		sc= new Scanner(System.in);

		System.out.print("nPlease Enter the first :  ");
		con_str1 = sc.nextLine();
		
		System.out.print("nPlease Enter the second :  ");
		con_str2 = sc.nextLine();
		
		String str3 = con_str1.concat(con_str2);
		
		System.out.println("nThe result  =  " + str3);
	}
}
Please Enter the first :  Hi

Please Enter the second :  Hello

The result  =  HiHello

Trong Chương trình Java này, chúng tôi đã sử dụng Toán tử gán + để nối chuỗi.

import java.util.Scanner;

public class ConcatStrings1 {
	private static Scanner sc;
	
	public static void main(String[] args) {
		String conStr1;
		String conStr2;
		
		sc= new Scanner(System.in);

		System.out.print("nPlease Enter the first String :  ");
		conStr1 = sc.nextLine();
		
		System.out.print("nPlease Enter the second String :  ");
		conStr2 = sc.nextLine();
		
		String str3 = conStr1 + ' ' + conStr2;
		
		System.out.println("nThe Java String concat result  =  " + str3);
	}
}

Chương trình Java để kết nối chuỗi 2

Chương trình Java để kết nối các chuỗi bằng cách sử dụng StringBuilder

Java StringBuilder có một hàm nối thêm để nối một chuỗi vào cuối chuỗi kia.

import java.util.Scanner;

public class Example2 {
	private static Scanner sc;
	
	public static void main(String[] args) {
		String conStr1;
		String conStr2;
		
		sc= new Scanner(System.in);

		System.out.print("nPlease Enter the first :  ");
		conStr1 = sc.nextLine();
		
		System.out.print("nPlease Enter the second :  ");
		conStr2 = sc.nextLine();
	
		StringBuilder sb = new StringBuilder(15);
		
		sb.append(conStr1).append(" ").append(conStr2);
		
		System.out.println("nThe result  =  " + sb.toString());
	}
}
Please Enter the first :  Hello

Please Enter the second :  World

The result  =  Hello World

Java StringBuffer cũng có tính năng nối thêm để nối một chuỗi với cuối chuỗi kia .

import java.util.Scanner;

public class Example3 {
	private static Scanner sc;
	
	public static void main(String[] args) {
		String conStr1;
		String conStr2;
		
		sc= new Scanner(System.in);

		System.out.print("nPlease Enter the first  :  ");
		conStr1 = sc.nextLine();
		
		System.out.print("nPlease Enter the second :  ");
		conStr2 = sc.nextLine();
	
		StringBuffer sbuff = new StringBuffer(15);
		
		sbuff.append(conStr1).append(" ").append(conStr2);
		
		System.out.println("nResult  =  " + sbuff.toString());
	}
}
Please Enter the first :  Tutorial

Please Enter the second :  Gateway

Result  =  GraphGuide