CString类中的函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CString类中的函数相关的知识,希望对你有一定的参考价值。

VC控制台程序中要使用CString类中的函数,用这种方法:
project->setting->general 里的Microsoft Foundmation class选择“Use MFC in a Shared DLL”,再包含<afx.h>就行了。
调试显示WINDOWS.H already included. MFC apps must not #include <windows.h>
是什么原因???谢谢!
没有,我的程序的头文件是:#include <stdio.h>
#include <winsock.h>
#include <string.h>
#pragma comment(lib, "ws2_32.lib")
不知道是不是有冲突?
有什么问题??请教
谢谢master_fc,我一开始把#include <afx.h>放在所有声明的最后,按照你说的我把#include <afx.h>放在了最前面,结果就没有问题了。
但是我还想问一下,为什么会这样呢?声明的顺序有影响吗??谢谢!!
为什么有影响呢?

把#include <afx.h>放到"stdafx.h"后面,其他头文件的前面或者直接放到stdafx.h 参考技术A #pragma comment(lib, "ws2_32.lib")
#include <WINSOCK2.H>
#include <stdio.h>
#include <string>
参考技术B #include <afx.h>

的 前后位置是有关系的。这个应该是最开始的位置进行声明。
参考技术C 看看有没有StdAfx.h这个,有的话打开他删除里面的#include <windows.h> 参考技术D 你的头文件有问题

类中的函数重载

1. 函数重载回顾

  • 函数重载的本质为相互独立的不同函数
  • C++通过函数名函数参数确定函数调用
  • 无法直接通过函数名得到重载函数的入口地址
  • 函数重载必然发生在同一个作用域中

2. 类中的函数重载

类的成员函数可以进行重载,包括

  • 构造函数的重载
  • 普通成员函数的重载
  • 静态成员函数的重载

注意:函数重载必然发生在同一个作用域中,因此全局函数和类的成员函数无法构成重载。

#include <stdio.h>

class Test

    int i;
public:
    Test()
    
        printf("Test::Test()\\n");
        this->i = 0;
    

    Test(int i)
    
        printf("Test::Test(int i)\\n");
        this->i = i;
    

    Test(const Test &obj)
    
        printf("Test(const Test& obj)\\n");
        this->i = obj.i;
    

    static void func()
    
        printf("void Test::func()\\n");
    

    void func(int i)
    
        printf("void Test::func(int i), i = %d\\n", i);
    

    int getI()
    
        return i;
    
;

void func()

    printf("void func()\\n");


void func(int i)

    printf("void func(int i), i = %d\\n", i);


int main()

    func();        // void func()
    func(1);       // void func(int i), i = 1

    Test t;        // Test::Test()
    Test t1(1);    // Test::Test(int i)
    Test t2(t1);   // Test(const Test& obj)

    func();        // void func()
    Test::func();  // void Test::func()

    func(2);       // void func(int i), i = 2;
    t1.func(2);    // void Test::func(int i), i = 2
    t1.func();     // void Test::func()

    return 0;

技术图片

重载的意义

  • 通过函数名对函数功能进行提示
  • 通过参数列表对函数用法进行提示
  • 扩展系统中已经存在的函数功能
#include <stdio.h>
#include <string.h>

char *strcpy(char *buf, const char *str, unsigned int n)

    return strncpy(buf, str, n);


int main()

    const char *s = "D.T.Software";
    char buf[8] = 0;

    strcpy(buf, s, sizeof(buf) - 1);

    printf("%s\\n", buf);

    return 0;

技术图片

以上是关于CString类中的函数的主要内容,如果未能解决你的问题,请参考以下文章

字符串类中的字符串(const char *)构造函数内存泄漏

从默认构造函数中添加静态类中的实例类时出现Stack-Overflow异常

C++中 string 和cstring 头文件 有啥区别????

同一个类文件中怎样在public class类中调用Class 类中的main函数

如何调用另一个类中的函数? [复制]

打字稿:类方法中的函数参数比父类中的参数更窄