first.
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了first.相关的知识,希望对你有一定的参考价值。
public class TestVar{
//没空格
static int j;
//static int 数据j,我写成了i,先不赋值。
public void m(){ //m我写成了main。
int i = 0; //i=0之间,要空2个格子。
System.out.println("i");
}
//没空格
public static void main(String[] args){
int i = 0;
System.out.println(i);
System.out.println(j);
boolean a=false;
if (a) {
int c = 0;
System.out.println("a is true");
}
long longNum1 = 888888888888L;
}
}
//漏了一个花括号..
//sum,C++果然是与Java大有不同,自己也有马虎的地方。加油。
以上是关于first.的主要内容,如果未能解决你的问题,请参考以下文章
[ jquery 选择器 :first :first-child ] 实例分析: :first :first-child 之间在元素选取方面的区别
breadth-first depth-first best-first
Database-First,Model-First,Code-first
jQuery中 :first:first-child 和 :first-of-type 之间的不同