入门的hello world
using namespace std; 是使用命名空间,有点像java里面的引入包
main 方法和java一样是主入口,有且只有一个,因为是int ,所以还必须返回一个整形
#include<iostream>
using namespace std;
int main()
{
cout << "hello world!"<< endl;
cin.get();//这个可以不要
return ;
}
所以换成下面的方法也是可以的:
#include<iostream>
int main()
{
std::cout << "hello world12!"<< endl;
std::cin.get();//这个可以不要
return ;
}
变量的使用:
#include<iostream> int test(){
int x = ;
int y = ;
int x1 = ;
int y1 = ;
char z('A');
z = 'B';
std::cout << x + y <<std::endl;
std::cout << x1 + y1 <<std::endl;
std::cout << z <<std::endl;
std::cin.get();//这个可以不要
return ;
}
int main()
{
test();
return ;
}
枚举的用法:
#include<iostream> int test(){
enum Weekday{Mon= ,Tsu= ,Wen= };
std::cout << Mon + Tsu + Wen <<std::endl;
std::cin.get();//这个可以不要
return ;
}
int main()
{
test();
return ;
}
作用域的问题:
#include<iostream> int test(){
enum Weekday{Mon= ,Tsu= ,Wen= }; {
{
{
int x = ;
std::cout << x <<std::endl;
}
}
}
std::cout << Mon + Tsu + Wen <<std::endl; std::cin.get();//这个可以不要
return ;
}
int main()
{
test(); return ;
}
判断运算符和比较运算符:
#include<iostream> int test(){
enum Weekday{Mon= ,Tsu= ,Wen= }; {
{
{
int x = ;
std::cout << x <<std::endl;
}
}
}
if( > ){
std::cout << "确实大些!!" <<std::endl;
} std::cout << Mon + Tsu + Wen <<std::endl; std::cin.get();//这个可以不要
return ;
}
int main()
{
test(); return ;
}
字符串的运用:
#include<iostream>
#include<string>
int test(){
enum Weekday{Mon= ,Tsu= ,Wen= }; {
{
{
int x = ;
std::cout << x <<std::endl;
}
}
}
if( > ){
std::cout << "xiao!!" <<std::endl;
}else{
std::cout << "da!!" <<std::endl;
} std::string mystring("this is sting test");
std::cout << Mon + Tsu + Wen <<std::endl;
std::cout << mystring <<std::endl;
std::cin.get();//这个可以不要
return ;
}
int main()
{
test();
return ;
}
枚举和数组的用法:
#include<iostream>
#include<string>
int test(){
enum Weekday{Mon= ,Tsu= ,Wen= }; {
{
{
int x = ;
std::cout << x <<std::endl;
}
}
}
if( > ){
std::cout << "xiao!!" <<std::endl;
}else{
std::cout << "da!!" <<std::endl;
} std::string mystring("this is sting test");
std::cout << Mon + Tsu + Wen <<std::endl;
std::cout << mystring <<std::endl;
std::cin.get();//这个可以不要
double temp[];
temp[] = ;
temp[] = ;
temp[] = ; return ;
}
int main()
{
test(); return ;
}
指针的用法:
使用&可以获得任意变量的地址,但是必须在对应的指针中才能储存地址例如 long 的变量的地址就只能储存在long 的指针中。
记住指针一定要初始化
#include<iostream>
#include<string>
int test(){
long number;
number = 12345L;
long *pstr = 0L; //定义一直指针
pstr = &number; //获得变量的内存地址,将内存地址赋值给指针 std::cout << pstr <<std::endl;
std::cout << *pstr <<std::endl; //*间接运算符,和指针一起用,可以得到指针所指向的值
std::cin.get();
return ;
}
int main()
{
test(); return ;
}
指针的内存图