Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {

    public static String stringAppend(String[] strings) {

        if (strings != null) {
            int len = strings.length;
            StringBuffer stb = new StringBuffer(strings[0]);
            for (int i = 1; i < len; i++) {
                stb.append(strings[i]);
            }
            return stb.toString();
        } else {
            return null;
        }

    }
}