码迷,mamicode.com
首页 > 其他好文 > 详细

static

时间:2014-10-01 20:22:31      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   for   sp   div   c   

#include<stdio.h>
#include<iostream>
#include<assert.h>
using namespace std;

static int a=100;

void func()
{
    static int a=10;
    a++;
    cout<<a<<endl;
}
int main()
{
    for(int i=0; i<10; i++)
        func();

    a++;
    cout<<a<<endl;
}

 

#include<stdio.h>
#include<iostream>
#include<assert.h>
using namespace std;

static int a=100;

void func()
{
    a++;
}
int main()
{
    a++;
    cout<<a<<endl;
}

 

static

标签:style   blog   color   io   os   for   sp   div   c   

原文地址:http://www.cnblogs.com/huangcongcong/p/4003435.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!