2007-04-02

Operator Level

关键字: operator level
LevelOperatorDescriptionGrouping1::scopeLeft-to-right2() [] . -> ++ -- dynamic_cast static_cast reinterpret_cast const_cast typeidpostfixLeft-to-right3++ -- ~ ! sizeof new deleteunary (prefix)Right-to-left* &indirection and reference (pointers)+ -unary sign operator4(type)type castingRight-to ...
2007-03-31

Some Error collection when std for C++

关键字: c++ error
#include<iostream.h> #include<string.h> using namespace std; int main(){      int a(10);      cout<<a; } will be run ok but the code as fallows will be ... #include<iostream.h> #include<string.h>//here need to #include< ...
2007-03-29

Fundamental data types

关键字: data types c++
Name Description Size* Range* char ...
2007-03-29

C++普及篇之HelloWorld

关键字: C++
// my first program in C++#include <iostream>using namespace std;int main (){  cout << "Hello World!";  return 0;}