Redian新闻
>
interface编译完了到底是什么?
avatar
interface编译完了到底是什么?# Programming - 葵花宝典
n*c
1
interface Iface
{
void do();
};
class MyFace:Iface
{
void do;
void i;
};
MyFace mf;
编译器把mf 编译成机器码以后,Iface的部分在哪里?还是Iface的machine code被放
在某处,mf里只有一个pointer 指向那个地方。
如果
abstract class Aface;
clas YourFace:Aface;
YourFace yf;
yf的machinecode里边应该有一块是Aface的内容,对吧。
avatar
b*e
2
就灭有了.
Runtime doesn't need interface. It's purely for type checking.
Well, that's not entirely true when runtime type checking is considered.
But still, it's just a (meaningless) tag which represents a unique id for
the interface. The definition is meaning less.
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。