1、四个类型转换

http://www.cnblogs.com/chio/archive/2007/07/18/822389.html

static_cast和dynamic_cast的区别

  • dynamic_cast的向下转化必须要有虚函数,
  • 对于向上转化(子类->父类),两者是相同的。dynamic_cast<Base *>(&Derived)和static_cast<Base *>(&Derived)
  • 对于向下转化(父类指针->子类指针),如果父类指针指向的是子类对象,那么两者相同;如果父类指针指向的是父类对象,那么static转换会不安全,dynamic_cast会返回NULL;
    #include<iostream>
    using namespace std;
    class Base
    {
    public:
    int m_num;
    void fBase()
    {
    cout<<"Base is called"<<endl;
    }
    /*virtual void fBase1()
    { }*/
    }; class Derived :public Base
    {
    public:
    char *m_szName[100];
    void fDeviced()
    {
    cout<<"Derived is called"<<endl;
    }
    }; int main()
    {
    Base B;
    Derived D;
    Base *pb=&B;
    Base *pb1=&D;
    /*对于上行转化,dynamic_cast和static_cast是一样的,因为指针pb只会访问基类的内容*/
    pb=dynamic_cast<Base *>(&D);
    pb=static_cast<Base *>(&D);
    //*以下两句话的效果是一样的,因为pb1本身指向的是派生类对象,所以转化后,pd1和pd2的访问不会越界*/
    pd1=static_cast<Derived *>(pb1);
    pd2=dynamic_cast<Derived *>(pb1);
    //以下两句话的效果是不一样的,因为pb本身指向的是基类对象,所以转化后,pd1成功,但是通过pd1可以访问派生类的成员m_szName,这是不安全的
    //而dynamic_cast的会使pd2变成0,即不可以访问类的成员
    Derived *pd1=static_cast<Derived *>(pb);
    Derived *pd2=dynamic_cast<Derived *>(pb);
    }

2、链表冒泡排序算法

#include<stdio.h>
#include<malloc.h>
#define LEN sizeof(listnode)
struct listnode
{
int data;
struct listnode *next;
}; listnode *Create()
{
listnode *head=(listnode *)malloc(LEN);
head->data=0;
head->next=NULL;
listnode *rear=head;
int x=0;
int flag=1;
while(flag)
{
scanf("%d",&x);
if(x!=0)
{
listnode *s=(listnode *)malloc(LEN);
s->data=x;
rear->next=s;
rear=s;
}
else
flag=0;
}
rear->next=NULL;
return head;
}
void bubblesort(listnode * head)
{
listnode * end, * p , * q;//end用来记录排好序的最后一个元素地址,p,q分别为前驱,后继
int temp;
p=head->next;
q=p->next;
end=NULL;
while(end!=head->next)
//如果head所指结点的next成员为end,循环结束
{
p=head->next;//p结点从链表头结点开始
q=p->next;//q指向p所指结点的下一个结点
while(p->next!=end)
//当p->next的值为end时,表示到链尾
{
if(p->data>q->data)//按照数据域从小到大排序
{
temp=p->data;
p->data=q->data;
q->data=temp;
}
p=q;
q=q->next;
}
end=p;//使end指向每次排序的q所指的结点即尾结点
}
} void print(listnode *head)
{
listnode *p=head->next;
while(p!=NULL){
printf("%d -> ",p->data);
p=p->next;
}
printf("\n");
}
int main()
{
listnode *head=Create();
bubblesort(head);
print(head);
}

3、链表的插入排序(推荐方法)

http://blog.csdn.net/chengtao_xd/article/details/8711451

4、字符串反转的优化

1、交换的地方

2、利用指针比较快

20140903 dynamic_cast和static的区别 链表的冒泡排序和插入排序的更多相关文章

  1. php self与static的区别

    self vs static 用一个demo来直接说明self与static的区别.self示例: <?phpclass Vehicle {    protected static $name ...

  2. 转:C++ 匿名namespace的作用以及它与static的区别

    匿名namespace的作用以及它与static的区别 一.匿名namespace的作用在C语言中,如果我们在多个tu(translation unit)中使用了同一个名字做为函数名或者全局变量名,则 ...

  3. C# 总结const、 readonly、 static三者区别:

    总结const. readonly. static三者区别: (有人问我,看似简单,我也没能立刻回答出来,总结一下,分享一下.) const:静态常量,也称编译时常量(compile-time con ...

  4. c++ dynamic_cast 和 static_cast 的区别

    今天在看王道宝典的时候看到dynamic_cast ,一直都没用过,也不了解,今天来总结一下. dynamic_cast 和 static_cast 都可以用来强制转换指针类型,但不同的是dynami ...

  5. PHP中new self()和new static()的区别

    1.new static()是在PHP5.3版本中引入的新特性. 2.无论是new static()还是new self(),都是new了一个新的对象. 3.这两个方法new出来的对象有什么区别呢,说 ...

  6. PHP中new self()和new static()的区别探究

    1.new static()是在PHP5.3版本中引入的新特性. 2.无论是new static()还是new self(),都是new了一个新的对象. 3.这两个方法new出来的对象有什么区别呢,说 ...

  7. Java中主类中定义方法加static和不加static的区别

     Java中主类中定义方法加static和不加static的区别(前者可以省略类名直接在主方法调用(类名.方法),后者必须先实例化后用实例调用) 知识点:1.Getter and Setter 的应用 ...

  8. php面向对象编程self和static的区别

    在php的面向对象编程中,总会遇到 class test{ public static function test(){ self::func(); static::func(); } public ...

  9. C++ 匿名namespace的作用以及与static的区别

    匿名namespace的作用以及它与static的区别 一.匿名namespace的作用 在C语言中,如果我们在多个tu(translation unit)中使用了同一个名字做 为函数名或者全局变量名 ...

随机推荐

  1. python类与对象

    1.  class命名规范:首字母大写,驼峰命名法 2.  class 里面函数括号里面带(self)说明这是一个实例,调用实例方法需要用实例调用 class Teacher: def  test_1 ...

  2. golang的数据类型之字符类型

    字符类型使用细节 1)字符常量是用单引号('')括起来的单个字符.例如:var c1 byte = 'a' var c2 int = '中' var c3 byte = '9' 2) Go中允许使用转 ...

  3. scrapy错误-[scrapy.core.scraper] ERROR: Spider error processing

    一.问题,就是我的callback没得回调函数 二:然后我查看源代码,发现: 三.我把解析页数的函数名设置为,def parse(self,response):  就没保错了 能运行成功 总结:在sp ...

  4. 2018前端面试总结,看完弄懂,工资少说加3K | 掘金技术征文

    2018前端面试总结,看完弄懂,工资少说加3K | 掘金技术征文:https://juejin.im/post/5b94d8965188255c5a0cdc02

  5. How To Release and/or Renew IP Addresses on Windows XP | 2000 | NT

    Type 'ipconfig' (without the quotes) to view the status of the computer's IP address(es). If the com ...

  6. c# 自定义控件之 ComboBox

    winform 自带的 combobox 无法支持根据输入文本匹配列表中的项目,需要使用自定义控件. public class MyCombobox : ComboBox { //初始化数据项 pri ...

  7. git update-index --assume-unchanged on directory 转摘自:http://stackoverflow.com/questions/12288212/git-update-index-assume-unchanged-on-directory

    30down votefavorite 16 git 1.7.12 I want to mark all files below a given directory as assume-unchang ...

  8. ARM指令adr adrl ldr mov

    ADR是一条小范围的地址读取伪指令,它将基于PC的相对偏移的地址值读到目标寄存器中.格式:ADR register,exper. 编译源程序时,汇编器首先计算当前PC值(当前指令位置)到exper的距 ...

  9. 三、IIS通过目录方式部署以供外部调试

    一.IIS 下面是通过 gif 为 因项目是bin生成后的,非运行方式的调试,所以断点调试无效,仅修改文件后,右击项目重新生成解决方案即可,好处:启动快,坏处:不可以断点调试查看变量和分步执行语句.

  10. StarUML 破解方法2.X(转)

    下载地址:https://www.jb51.net/softs/558248.html#download 在安装目录的:StarUML\www\license\node 找到LicenseManage ...