/**
n o w j a v a . c o m 提供
**/
/**
BigSlice Slicing Framework by Longevity Software LLC d.b.a. Terawatt Industries
is licensed under a Creative Commons Attribution-NonCommercial 3.0 Unported License.
Based on a work at https://github.com/Terawatt-Industries/bigslice.
Permissions beyond the scope of this license may be available at http://terawattindustries.com.
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
//package com.nowjava;
public class Main {
public static void main(String[] argv) throws Exception {
String[] array = new String[] { "1", "abc", "level", null,
"nowjava.com", "asdf 123" };
System.out.println(java.util.Arrays.toString(popFromArray(array)));
}
/**
* Pop the last element off the array.
*
* @param array
* @param val
* @return an empty array if the array was blank, otherwise the array with
* the last element removed.
*/
public static String[] popFromArray(String[] array) {
String[] ans = null;
/**代码未完, 请加载全部代码(NowJava.com).**/
本文系作者在时代Java发表,未经许可,不得转载。如有侵权,请联系nowjava@qq.com删除。