×

Objective-C与Runtime的详细资料介绍让你不在问为什么

消耗积分:0 | 格式:rar | 大小:0.24 MB | 2018-09-19

分享资料个

  笔者非常高兴能为Objective-C写写自己的理解和总结,不仅仅因为是笔者是Objective-C多年的重度开发者,更是因为这是一门有独特想法的,有创造性的,有优美语法的,有历史地位的编程语言。如果说对本文有什么预期的话,笔者希望能把一些类似“为什么是这样”的问题说清楚。

  Objective-C发明于上世纪80年代,Objective-C的作者——Brad Cox和Tom Love,在接触到SmallTalk语言之后,一方面受到SmallTalk的启发,另一方面也是看好C语言有着巨大影响力和广阔前景,因此选择在C语言的基础上引入SmallTalk语言面向对象和消息派发的概念。最初的版本以C语言的扩展的形式实现的,在C编译器中编写支持Objective-C的预处理模块,预处理会先将Objective-C语法代码转化为C代码,再继续C代码的编译过程。1988年,以企业为目标客户的NeXT公司购买Objective-C的使用授权,接着扩展著名开源编译器GCC,使其支持Objective-C,并且开发了AppKit和FoundationKit等基础库,Objective-C成为了NeXTSTEP系统(工作站)上“标准”的应用程序开发语言。1996年,Apple公司收购了NeXT公司,NeXTSTEP/OPENSTEP系统成为Apple新一代操作系统OSX的研发基础。 2005年,Apple引入了Chris Lattner以及他的LLVM技术团队,Objective-C新特性和编译优化第一次得到高水平编译器最高优先级的支持,先从后端的代码优化和生成开始,逐步扩展到前端的语法解析(Clang)。如今(2015),Objective-C已经拥有GCC之外更为适合更为优异的编译器套装选择——LLVM编译器,LLVM包括完整的前后端模块,最新版本6.1(2015)。

  Objective-C是面向对象的,这是Objective-C最基本的的概念。关于面向对象,把一定的算法(函数)和数据(变量)因某种内在的联系绑定在一起,形成最基本的程序结构单元,这些结构单元即是经常谈及的对象,加上抽象二字,我们称呼它为抽象对象,术语简称类;通过对变量的赋值(笔者认为不仅是变量,逻辑运算如闭包也是可以用于赋值)则会构成实体对象,术语简称对象(Objective-C一般也称作实例)。对象和对象之间不是完全独立的,通过巧妙的方式,它们之间能建立紧密的联系,比如继承、派生,对事物的抽象以及对代码的复用有着微妙而重大的价值。Brad Cox和Tom Lov出版的第一本正式Objective-C著作,书名即为《Object-Oriented Programming, An Evolutionary Approach》。那么,为什么要对象,为什么要面向对象?这是个好问题,观察人类普遍的思维,我们理解这个世界使用最多的概念就是物体,我们擅长把感知到的一切抽象为一个个的物体,通过了解物体的构成,以及物体之间的作用关系,实现对这个世界的认知和作用的目的。这一直是非常奏效的!面向对象就是把人类的思维的天赋和积累的思想财富应用于编程,这样,程序对于增强生产能力/提高生活品质的效率和能力方面会大大提高。

声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉

评论(0)
发评论

下载排行榜

全部0条评论

快来发表一下你的评论吧 !

'+ '

'+ '

'+ ''+ '
'+ ''+ ''+ '
'+ ''+ '' ); $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code ==5){ $(pop_this).attr('href',"/login/index.html"); return false } if(data.code == 2){ //跳转到VIP升级页面 window.location.href="//m.obk20.com/vip/index?aid=" + webid return false } //是会员 if (data.code > 0) { $('body').append(htmlSetNormalDownload); var getWidth=$("#poplayer").width(); $("#poplayer").css("margin-left","-"+getWidth/2+"px"); $('#tips').html(data.msg) $('.download_confirm').click(function(){ $('#dialog').remove(); }) } else { var down_url = $('#vipdownload').attr('data-url'); isBindAnalysisForm(pop_this, down_url, 1) } }); }); //是否开通VIP $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code == 2 || data.code ==5){ //跳转到VIP升级页面 $('#vipdownload>span').text("开通VIP 免费下载") return false }else{ // 待续费 if(data.code == 3) { vipExpiredInfo.ifVipExpired = true vipExpiredInfo.vipExpiredDate = data.data.endoftime } $('#vipdownload .icon-vip-tips').remove() $('#vipdownload>span').text("VIP免积分下载") } }); }).on("click",".download_cancel",function(){ $('#dialog').remove(); }) var setWeixinShare={};//定义默认的微信分享信息,页面如果要自定义分享,直接更改此变量即可 if(window.navigator.userAgent.toLowerCase().match(/MicroMessenger/i) == 'micromessenger'){ var d={ title:'Objective-C与Runtime的详细资料介绍让你不在问为什么',//标题 desc:$('[name=description]').attr("content"), //描述 imgUrl:'https://'+location.host+'/static/images/ele-logo.png',// 分享图标,默认是logo link:'',//链接 type:'',// 分享类型,music、video或link,不填默认为link dataUrl:'',//如果type是music或video,则要提供数据链接,默认为空 success:'', // 用户确认分享后执行的回调函数 cancel:''// 用户取消分享后执行的回调函数 } setWeixinShare=$.extend(d,setWeixinShare); $.ajax({ url:"//www.obk20.com/app/wechat/index.php?s=Home/ShareConfig/index", data:"share_url="+encodeURIComponent(location.href)+"&format=jsonp&domain=m", type:'get', dataType:'jsonp', success:function(res){ if(res.status!="successed"){ return false; } $.getScript('https://res.wx.qq.com/open/js/jweixin-1.0.0.js',function(result,status){ if(status!="success"){ return false; } var getWxCfg=res.data; wx.config({ //debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId:getWxCfg.appId, // 必填,公众号的唯一标识 timestamp:getWxCfg.timestamp, // 必填,生成签名的时间戳 nonceStr:getWxCfg.nonceStr, // 必填,生成签名的随机串 signature:getWxCfg.signature,// 必填,签名,见附录1 jsApiList:['onMenuShareTimeline','onMenuShareAppMessage','onMenuShareQQ','onMenuShareWeibo','onMenuShareQZone'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 }); wx.ready(function(){ //获取“分享到朋友圈”按钮点击状态及自定义分享内容接口 wx.onMenuShareTimeline({ title: setWeixinShare.title, // 分享标题 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享给朋友”按钮点击状态及自定义分享内容接口 wx.onMenuShareAppMessage({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 type: setWeixinShare.type, // 分享类型,music、video或link,不填默认为link dataUrl: setWeixinShare.dataUrl, // 如果type是music或video,则要提供数据链接,默认为空 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ”按钮点击状态及自定义分享内容接口 wx.onMenuShareQQ({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到腾讯微博”按钮点击状态及自定义分享内容接口 wx.onMenuShareWeibo({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ空间”按钮点击状态及自定义分享内容接口 wx.onMenuShareQZone({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); }); }); } }); } function openX_ad(posterid, htmlid, width, height) { if ($(htmlid).length > 0) { var randomnumber = Math.random(); var now_url = encodeURIComponent(window.location.href); var ga = document.createElement('iframe'); ga.src = 'https://www1.elecfans.com/www/delivery/myafr.php?target=_blank&cb=' + randomnumber + '&zoneid=' + posterid+'&prefer='+now_url; ga.width = width; ga.height = height; ga.frameBorder = 0; ga.scrolling = 'no'; var s = $(htmlid).append(ga); } } openX_ad(828, '#berry-300', 300, 250);