首页 > TAG信息列表 > 20220614

01-HelloWorld-20220614

1,c++的7行代码框架 2,cout <<""<< endl;         //打印   #include <iostream> using namespace std; int main() { cout << "Hello World" << endl; cout << "Hello C++" << endl; system("p

Java学习_20220614

Java集合框架 一、泛型 1.泛型方法 在泛型方法中不用传递参数类型,类型是由调用的泛型方法的数据来传递。 /** *泛型方法,语法:<T>返回值类型 */ public class GenericMethod { public <T> void show(T t){ System.out.println("泛型方法:"+t); } } //调用泛型方法