高挑可乐

文章
5
资源
0
加入时间
2年10月24天

vue项目5+app项目实现顶部状态栏

app.vue获取状态栏高度<template> <div id="app" class="app" :class="{'has-nav-footer':$route.meta.navFooterShow}"> <transition :name="transitionName"> <keep-alive :inc

面试题:你能不用遍历依次打印一个数组吗?

不用遍历?那不就是递归嘛,简单!public class test { public static void main(String[] args) { int[] arr = new int[]{0,1,2,3}; printArray(arr, arr.length); } public static void printArray(int[] arr, int n) { if (n <= 0) return;