C++/CLI for C# programmer基本语法使用基本指南

本文详细介绍了C++/CLI的基础知识,包括C++基本语法、在Visual Studio中创建C++项目、C++/CLI的链接、项目属性设置以及C++/CLI的特性。通过实例展示了如何创建C++/CLI项目,重点讨论了编译器选项、链接器设置和异常处理。同时,文章提供了丰富的资源链接供深入学习。
摘要由CSDN通过智能技术生成

该文涉及的内容如下:

  • C++基本语法
  • VS中创建C++项目
  • VS C++项目属性介绍
  • C++/CLI介绍
  • VS中创建C++/CLI项目

C++基本语法

// cppclass.h
#ifndef _CPP_CLASS_H_
#define _CPP_CLASS_H_ 

#include <string> // 使用include包含头文件

namespace MyClassSpace                    // 定义命名空间
{
    class BaseClass                       // 定义一个类
    {
    public:                               // 声明共有部分
        BaseClass();                      // 构造函数
        BaseClass(const std::string& name);
        ~BaseClass();                     // 析构函数
        void PrintClassName();            // 类成员函数
        virtual void Execute();           // 类成员虚函数
    private:                              // 声明私有部分
        std::string m_name;               // 成员变量
    };

    class ChildClass : public BaseClass   // 继承一个类
    {
    public:
        ChildClass();
        ChildClass(const std::string& name);
        ~ChildClass();
        virtual void Execute();
    };
}

#endif

// cppclass.cpp

#include "cppclass.h"

#include <iostream>

namespace MyClassSpace
{
    BaseClass::BaseClass()                        // 构造函数实现
    {
        m_name = "base class";
    }

    BaseClass::BaseClass(const std::string& name) // 构造函数实现
    {
        m_name = name;
    }

    BaseClass::~BaseClass()                       // 析构函数实现
    {

    }

    void BaseClass::PrintClassName()
    {
       std::cout << "This class name is " << m_name << std::endl;
    }

    void BaseClass::Execute()
    {
        std::cout << "BaseClass::Execute" << std::endl;
    }

    ChildClass::ChildClass()                      // 构造函数,利用了基类的构造
    : BaseClass("child class")
    {

    }

    ChildClass::ChildClass(const std::string& name)
    : BaseClass(name)
    {

    }

    ChildClass::~ChildClass()
    {

    }

    void ChildClass::Execute()
    {
        std::cout << "ChildClass::Execute" << std::endl;
    }
}

// main.cpp
#include "cppclass.h"

using namespace MyClassSpace;           // 使用命名空间

int main()                              // 可执行程序的入口
{
    const int arraySize = 2;            // 常量定义
    BaseClass* classArray[arraySize];   // 指针的数组定义

    for (int i=0; i<arraySize; ++i)     // 循环
    {
        if (i == 0)                     // 条件判断
        {
            classArray[i] = new BaseClass(); // new一个实例
        }
        else
        {
            classArray[i] = new ChildClass(); // new一个实例
        }
    }

    // 输出的结果如下:
    // This class name is base class
    // BaseClass::Execute
    // This class name is child class
    // ChildClass::Execute
    for (int i=0; i<arraySize; ++i)
    {
        classArray[i]->PrintClassName();
        classArray[i]->Execute();
    }

    // 注意new出来的对象注意释放掉
    for (int i=0; i<arraySize; ++i)
    {
        if (classArray[i])
        {
            delete classArray[i];       // 释放new出来的对象
            classArray[i] = nullptr;
        }
    }

    return 0;                           // 函数返回值
}

VS中创建C++项目

  • VS2010,File->New Project,选择Empty Project,填写name,如下图:

  • 将上一节中的代码添加到该工程中

  • 编译运行即可

VS C++常用项目属性介绍

通用属性

  • Configuration: Active(Debug). 通常用来设定目标构建出来是Debug的还是Release的。该值可以在Configuration Manager中进行设定
  • Platform: Active(Win32). 同来设定目标构建出来的是基于32bit平台还是64bit平台的。该值可以在Configuration Manager中进行设定
  • General: 一些通用的设置,包括:
    • 输出目录
    • 中间结果的输出目录
    • 目标名字
    • 扩展
    • Configuration Type: exe,dll,or lib。
    • Use of MFC:是否需要使用MFC相关的库,通常不需要
    • Use of ATL: ATL介绍,通常也不需要
    • Character Set: Use Multi-Byte Character Set or Use Unicode Character Set,这个指的是,源代码编译成二进制的时候采用的编码,为内存编码。Unicode:一种所有字符都是用两个字节编码的编码模式;Multi-Byte:字节长度不是固定的。
    • Common Language Runtime Support: 是否使用通用语言运行时支持,在CLI一节中会给出介绍
    • Whole Program Optimization: 全局项目优化。

Debugging

此时需要关注的主要是Command,Command Arguments, Working Directory三项。

  • Command指的是exe程序,如果工程生成的就是exe可执行文件,那么该项就默认为$(TargetPath),如果生成的是dll程序,那么需要调试的时候,需要将该项设置成为载入当前dll的可执行文件。
  • Command Arguments:指的是可执行文件需要传入的参数
  • Working Directory:指的是可执行文件的工作目录,工作目录没有设置正确,启动调试的时候加载依赖的dll,可能会出错

C/C++ General

  • Additional Include Directories: 设置外部依赖的include文件的目录
  • Resolve #using Reference: 当使用clr进行编译的时候,用来指定#using "some.dll"的目录
  • Debug Information Format:
    • /Z7: 生成的obj文件中包含所有的debug information,不会生成pdb文件;
    • /Zi:生成pdb文件来包含debug information,可以和/Gm Enable minimal rebuild一起使用,而/Z7则不能;
    • /ZI:通常情况下不适用该选项
  • Common Language Runtime Support:clr相关
  • Suppress Startup Banner:在编译的时候显示或不显示版本信息

  • Warning Level:通常情况下设置为/W4
  • Treat Warnings As Errors: 通常情况下设置为Yes
  • Multi-processor Compilation: 通常设置为Yes
  • Use Unicode For Assembler Listing: 与输出的汇编相关,不清楚其用途。

C/C++ Optimization

一般情况下,上述的设置,保持默认即可。

C/C++ Preprocessor

  • Preprocessor Definitions: 定义预定义的宏
#ifdef _TEST_
const bool test = true;   // 1
#else
const bool test = false;  // 2
#enif

针对于上面的示例代码,如果在该选项中,添加,_TEST_,那么会执行逻辑1,否者执行逻辑2.

  • Undefine Preprocessor Definitions: 与上面正好相反

其他相关属性一般保持默认

C/C++ Code Generation

  • Enable String Pooling: 如果启用该属性,那么下面代码中s和t指向的是相同的内存空间。
char *s = "This is a character buffer";
char *t = "This is a character buffer";
  • Enable Minimal Rebuild: 启用后,当对应的头文件发生变化时,使用该头文件的cpp源文件才会被重新编译
  • Enable C++ Exceptions: 对于c++异常抛出的设定
  • Runtime Library: 生成release下的dll用/MD,debug下的dll用/MDd,relase下的exe用/MT,debug下的exe用/MTD

C/C++ Advanced

  • Calling Convention: 函数调用约定,如果在使用第三方库的时候,两边的函数调用约定不同,那么生成的程序在运行的时候,可能会报第三方库调用到的函数堆栈异常的错误。具体见: https://blog.csdn.net/cnhk1225/article/details/53115381
  • Disable Specific Warnings: 用来屏蔽特定的警告

Linker General

  • Additional Library Directories: 额外的lib目录

Linker Input

  • Additional Dependencies:用来设定依赖的lib文件

Linker Debugging

  • Generate Debug Info: 是否需要产生debug信息,如果为false,那么在调试的时候由于找不到对应的debug相关的信息,就没法进行调试,如断点设置等。

Linker Advanced

  • Import Library: 如果生成的是dll,如果需要将dll对应的lib文件输出到另外的文件夹中,那么就需要设定这个值。如..\$(TargetName).lib

Build Events

如果在程序进行build之前或之后需要执行一些命令,可以在这个选项中进行添加,如,在程序执行之前,生成proto对应的头文件和源文件等。

C++/CLI介绍

什么是C++/CLI

C++/CLI的链接

上图实现cli编译的obj文件和非cli编译的目标文件之间实现链接。

上图实现cli编译的obj文件和lib文件之间进行链接

 

上图实现cli编译的代码对非cli编译的dll的引用

C++/CLI基本语法

  • 基本类型

 

从上表中可以发现,在C#里面不同命令空间,或类成员的方位使用的是.,在CLI中使用的是::

  • 托管内存

托管内存受到垃圾收集器进行释放管理。托管堆内存的申请使用关键字gcnew,如:System::String^ name = gcnew System::String(L'a', 10),此处需要注意的是非托管类型不能使用gcnew来申请托管内存。在纯粹的c++中,指针对象是使用星号*标识,此处gcnew的到的对象是用^进行标识的。同时关键字nullptr也能够直接赋值给nameSystem::String^ name=nullptr;

  • System::String

System::String的操作与c#中String的操作基本保持一致。

String^ str = string::Empty;
str1 += "a";
str1 = str1 + "a";
str1 = String::Concat(str1, "a");
String^ str2 = str1->ToUpper();
  • Managed Arrays

二维数组的定义如下:

array<int,2>^ arr = gcnew array<int,2>(2,2);
arr[0,0] = 1; arr[0,1] = 2;
arr[1,0] = 3; arr[1,1] = 4;

// managed type的对象数组
// array<System::String> a; 这种实现方式是非法的,应该为
array<System::String^> a;
  • Stream-Based IO

 

// Read bytes from file
FileStream^ fs = gcnew FileStream("SampleFile.txt", FileMode::Open);
int bytesInFile = fs->Length;
array<Byte>^ bytes = gcnew array<Byte>(bytesInFile);
fs->Read(bytes, 0, bytesInFile);
String^ textInFile = Encoding::ASCII->GetString(bytes);
  • Managed Exception Handling

 

StreamReader^ sr = gcnew StreamReader(arg);
try
{
    TextWriter^ tw = Console::Out;
    tw->WriteLine("File {0}", arg);
    DumpTextReader(sr, tw);
}
catch (Exception^ exc)
{
    // Do something
    throw;
}
finally
{
    sr->Close();
}
  • Casting Managed Types
WebRequest^ req = GetWebRequestFromSomWhere();
if (dynamic_cast<FtpWebRequest^>(req) != nullptr)
{
    ;
}
  • 自定义common type system(CTS)类型

 

// 此处使用ref class替代class
ref class ManagedReferenceType
{
    int aPrivateField;
public:
    void APublicFunction();
};

// 定义一个value type
public value class Point
{
    int x;
    int y;
public:
    Point(int x, int y);
};

gcnew array<V>(100); // V: value type
gcnew array<R^>(100); // R: ref type
  • initonly

这个关键字和c#中的readonly的含义是相同的。

ref class MathConstants
{
public:
    static initonly double Pi = 3.1415926; // 直接初始化
}

VS中创建C++/CLI项目

  • 新建项目

 

  • 常见项目属性设置
    • Configuration Platform:选择平台,win32或者是x64
    • General - 自定义输出目录
    • C/C++ General: 设定额外的头文件目录
    • Linker General:设定额外的lib库目录
    • Linker Input:设置依赖的lib库

Other Resource

  • <<Expert C++/CLI: .NET for Visual C++ Programmers>>
  • https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43051
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43052
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43054
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43065
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43066
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43068
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43079
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43080
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43082
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43093
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43094
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43096
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43105
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43106
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43108
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43118
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43119
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43121
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43132
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43133
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43135
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43145
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43146
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43148
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43158
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43159
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43161
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43171
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43173
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43175
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43185
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43187
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43189
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43199
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43200
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43201
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43212
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43213
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43215
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43226
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43227
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43229
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43240
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43241
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43243
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43253
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43254
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43256
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43262
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43263
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43269
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43275
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43276
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43283
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43289
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43290
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43297
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43302
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43303
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43305
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43316
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43317
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43319
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43328
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43329
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43331
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43342
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43343
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43345
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43355
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43356
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43358
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43369
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43370
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43372
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43383
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43384
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43385
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43396
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43397
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43398
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43410
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43411
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43412
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43423
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43424
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43426
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43436
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43437
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43439
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43449
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43450
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43452
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43463
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43464
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43466
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43477
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43478
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43479
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43490
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43492
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43493
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43503
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43504
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43506
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43516
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43517
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43519
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43525
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43531
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43533
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43539
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43540
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43546
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43552
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43553
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43554
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43565
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43567
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43568
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43578
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43580
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43581
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43592
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43593
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43594
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43605
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43606
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43608
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43619
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43620
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43622
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43632
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43633
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43635
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43645
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43646
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43648
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43658
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43659
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43660
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43672
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43673
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43674
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43685
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43687
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43688
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43698
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43700
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43701
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43712
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43713
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43714
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43725
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43726
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43727
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43738
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43740
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43741
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43751
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43752
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43753
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43764
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43765
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43766
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43778
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43779
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43780
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43786
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43793
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43794
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43799
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43801
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43802
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43812
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43813
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43814
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43826
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43827
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43828
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43839
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43840
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43841
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43853
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43854
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43855
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43866
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43868
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43869
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43880
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43881
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43882
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43893
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43894
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43895
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43906
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43907
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43908
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43919
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43921
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43922
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43933
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43934
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43936
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43945
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43946
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43947
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43959
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43960
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43961
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43973
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43974
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43975
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43985
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43986
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43987
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43998
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=43999
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44000
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44012
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44013
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44014
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44026
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44027
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44028
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44034
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44035
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44042
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44047
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44048
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44049
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44061
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44062
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44063
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44075
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44076
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44077
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44088
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44089
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44090
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44101
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44102
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44104
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44115
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44116
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44117
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44129
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44130
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44131
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44142
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44143
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44144
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44156
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44157
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44158
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44169
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44171
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44172
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44183
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44184
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44185
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44195
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44196
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44197
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44209
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44210
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44211
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44223
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44224
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44225
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44236
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44238
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44239
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44249
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44250
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44252
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44263
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44264
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44265
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44277
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44278
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44279
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44289
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44290
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44291
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44297
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44303
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44304
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44311
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44312
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44313
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44324
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44325
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44326
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44337
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44338
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44339
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44350
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44351
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44352
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44363
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44364
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44365
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44375
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44376
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44377
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44388
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44389
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44390
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44402
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44403
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44404
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44415
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44416
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44418
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44429
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44430
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44431
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44442
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44443
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44444
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44456
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44457
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44458
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44470
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44471
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44472
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44484
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44485
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44486
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44497
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44498
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44499
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44510
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44511
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44512
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44524
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44525
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44526
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44538
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44539
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44540
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44551
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44552
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44553
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44564
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44565
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44566
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44573
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44574
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44575
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44586
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44587
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44588
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44599
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44600
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44601
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44613
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44614
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44615
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44627
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44628
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44629
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44639
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44640
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44641
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44648
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44649
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44650
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44656
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44657
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44658
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44666
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44665
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44667
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44673
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44674
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44675
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44682
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44683
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44684
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44690
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44691
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44692
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44699
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44700
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44701
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44707
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44708
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44709
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44715
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44716
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44717
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44724
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44725
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44726
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44733
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44734
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44735
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44741
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44742
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44743
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44749
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44750
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44752
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44758
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44759
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44760
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44767
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44768
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44769
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44775
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44776
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44777
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44784
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44785
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44786
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44792
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44793
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44794
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44800
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44801
    https://bbs.yunxin.163.com/forum.php?mod=viewthread&tid=44802
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值