笔记2——C++ static关键字与一维动态数组的使用

static关键字

静态方法的调用:类名::函数名 (Java是类名.函数名)

#include <iostream>
#include <cstring>

class A{

    public:
        static void f(){
            std::cout << "A" << std::endl; 
        }
};

class B : public A{

    public:
        static void f(){
            std::cout << "B" << std::endl;
        }

};

int main(int argc, char *argv[])
{

    A::f();

    B::f();

    A *a = new A();
    B *b = new B();

    a->f();
    b->f();

    b = (B*)a;
    b->f();

    return 0;
}

结果:A B A B B

一维动态数组

int main(int argc, char* argv[])
{
    int n;
    std::cin >> n;
    int *x = new int[n];
    memset(x,0,n*sizeof(x));

    for(int i=0; i<n; ++i){
        std::cout << x[i] << std::endl;
    }


    int y[5];
    memset(y,0,5*sizeof(x));

    for(int i=0; i<5; ++i){
        std::cout << y[i] << std::endl;
    }


    char buffer[] = "string";
    memset(buffer,'*',strlen(buffer));
    std::cout << buffer << std::endl;

    return 0;
}

memset最适合初始化字符数组,若初始化数值,最多只能到0,否则容易造成错误。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值