InATourofC++,SecondEdition,BjarneStroustrup,thecreatorofC++,describeswhatconstitutesmodernC++.Thisconcise,self-containedguidecoversmostmajorlanguagefeaturesandthemajorstandard-librarycomponents—not,ofcourse,ingreatdepth,buttoalevelthatgivesprogrammersameaningfuloverviewofthelanguage,somekeyexamples,andpracticalhelpingettingstarted.StroustruppresentstheC++featuresinthecontextoftheprogrammingstylestheysupport,suchasobject-orientedandgenericprogramming.Histourisremarkablycomprehensive.Coveragebeginswiththebasics,thenrangeswidelythroughmoreadvancedtopics,includingmanythatarenewinC++17,suchasmovesemantics,uniforminitialization,lambdaexpressions,improvedcontainers,randomnumbers,andconcurrency.ThetourevencoverssomeextensionsbeingmadeforC++20,suchasconceptsandmodules,andendswithadiscussionofthedesignandevolutionofC++.Thisguidedoesnotaimtoteachyouhowtoprogram(forthat,seeStroustrup’sProgramming:PrinciplesandPracticeUsingC++,SecondEdition),norwillitbetheonlyresourceyou’llneedforC++mastery(forthat,seeStroustrup’sTheC++ProgrammingLanguage,FourthEdition,andrecommendedonlinesources).If,however,youareaCorC++programmerwantinggreaterfamiliaritywiththecurrentC++language,oraprogrammerversedinanotherlanguagewishingtogainanaccuratepictureofthenatureandbenefitsofmodernC++,youcan’tfindashorterorsimplerintroductionthanthistourprovides.
12.6MB c++17
1
简单易懂,Matlab编写的路标识别程序,可以对一幅图像中的多个路标进行识别。
对雾化图片效果很好!Matlabprogramwritteninroadsignsrecognition,animagecanbeidentifiedinanumberofsigns.Goodeffectontheatomizationpictures!
2024/6/7 7:58:52 4.07MB 路标识别 机器视觉
1
使用电脑摄像头拍照并进行图片查找的程序源码。
图片查找使用了opencv,C++实现;
拍照使用的C#开发。
以Picture为主程序,在查找图片的时候,调用了C++开发的OpenCvBase。
其中OpenCvBase参考了网上的代码,Picture是全原创开发。
2024/5/31 10:25:08 34.51MB C# 摄像头拍照 图片查找
1
Currentversion-----------------------------FixedbugwhenDetailPage(Hyperlink)containscrossbands(bandswerenotshown).-ImprovedToNRowModeandnowworkswithmultiColumndatabandandsubreportwithPrintOnParent-FixedbuginPDFexportwithtransparencyinPictureobjectandKeepAspectRatioproperty-FixedClippingofmemoobjectinSVGexportVersion6.3-----------------------------FixedPDFLineSpacing(forhugevalues+VAlign)-FixedChinesefontnamesinPDFexport-FixedactivecellforXLSwithseveralsheetsintheBIFF8export-FixedUTF-8supportforGeodatafromDBF*ImprovedFireDACDBcomponents
2024/5/31 3:17:29 8.56MB Fastreport
1
读取图片通过在textbox控件上输入相关文字后在读取的图片上绘制相应的文字。
2024/5/13 8:29:34 49KB C#VS2015
1
ApacheThriftisanopensourcecrosslanguageserializationandRPCframework.Withsupportforover15programminglanguages,ApacheThriftcanplayanimportantroleinarangeofdistributedapplicationdevelopmentenvironments.AsaserializationplatformApacheThriftenablesefficientcrosslanguagestorageandretrievalofawiderangeofdatastructures.AsanRPCframework,ApacheThriftenablesrapiddevelopmentofcompletepolyglotservicesinafewlinesofcode.Part1ofthisbooktakesyouonaguidedtourthroughtherangeofdistributeddevelopmentsolutionsempoweredbyApacheThrift.You’llseehowtheApacheThriftframeworkfitsintovariouscommunicationsschemesandalsogetahighlevelpictureoftheoverallApacheThriftarchitecture.
2024/4/30 11:02:25 6.11MB thrift 开发 apache 开发人员
1
题目:java拼图游戏姓名学号指导教师(签名)二○一一年七月十四日java拼图游戏[摘要]• 进一步加深对Java语言的理解和掌握:将所学的JAVA知识运用于实践中。
• 课程设计将理论与实践相结合,提供了一个既动手又动脑,独立实践的机会,锻炼我们的分析解决实际问题的能力,提高学生适应实际,实践编程的能力;• 熟练掌握JAVA语言中图形用户界面程序的编写;大体了解怎样用JAVA来编写小游戏的,增强我们实践能力和创新精神的综合培养。
前言编程思路:本练习因为要制作拼图游戏,所以首先要实现图片的导入。
这是通过getImage()函数来实现的,该函数有两个参数,第一个参数指明图片的路径,第二个参数指明图片的名称。
然后,因为要实现图片摆放的随意性,所以要通过initgame()函数来实现。
Initgame()函数是自写函数,在函数体内,通过调用Math.random()函数产生随机数,用来达到图片位置摆放的随意性和随机性。
最后,因为要实现人机交互.,所以首先要通过一系列函数来实现对鼠标事件的监听和响应,这是通过函数addMouseListener(this)和addMouseMotionListener(this)来完成的。
这样程序会区分用户对鼠标不同的操作,正确执行相应的功能。
//首先是程序实现及注释importjava.awt.*;importjava.applet.*;importjava.awt.event.*;publicclasspintuextendsApplet implementsMouseListener,MouseMotionListener{ privateImagepicture; privateGraphicsbuffer; privateImagepic[]; privateImageoff_pic[]; privateGraphicsoff_buf[]; privateImageoff_screen; privateGraphicsoff_buffer; privateImageoff_drag; privateGraphicsoff_drag_buf; privateintmap[][]; privateintran[]; privateintwidth=0; privateintheight=0; privateintlastx; privateintlasty; privateintlast_downx; privateintlast_downy; privateintstepx; privateintstepy; privatebooleanchoose; privatebooleanclick[][]; privatebooleanm_down; privatebooleanm_drag; privatebooleannot_redraw; privatebooleanable; Fontfont1,font2; //程序的初始化 publicvoidinit() {
2024/3/20 15:44:49 799KB java j2ee 课程设计报告
1
Bmp2rawisatooltoconvert24bitBMPfiletorawdata.ItmaybeusefulbeforegeneratingCarraysforshowingapictureinaembededsystem.Thecolororderintheoutputfileis(B,G,R),(B,G,R),...
2024/2/26 3:14:55 12KB bmp2raw 图像转换
1
LayeredForm:支持窗体动画特效,透明,可以和LayeredControl实现任意透明效果等。


包含LayeredWindowForm的功能支持一部分带有Paint事件的普通控件,但是不能实现普通控件的背景透明效果!控件类:ControlsHotKey:支持全局热键绑定,事件驱动,可以开启和关闭LayeredButton:按钮控件,支持按钮颜色设置,图片按钮,如果只设置一张正常状态下的按钮图片,则有鼠标移入加亮效果和鼠标按下变暗效果。
边框设置,文字效果设置。
LayeredCheckButton:对LayeredButton的扩展,支持状态切换。
LayeredDragBar:支持对父容器的尺寸拖拽调整LayeredFlashBox:支持透明Flash播放(当前版本不可用,请勿使用!)LayeredLabel:对文字的显示,文字效果设置LayeredListBox:支自定义列表项目,支持横向和纵向滚动,支持平滑滚动。
LayeredPanel:在Layered模式下的容器控件LayeredPictureBox:支持Gif播放,支持多张图片合成动画播放。
播放Gif时候不要频繁暂停和播放动画,容易导致线程阻塞。
LayeredTextBox:Layered模式下的文本编辑器。
支持水印文字设置LayeredTrackBar:进度条控件,支持图片进度条定义动画类:Animations通过设置LayeredForm的Animation.Effect属性来定义窗体动画特效。
包含了以下特效类:BlindWindowEffect、FadeinFadeoutEffect、GradualCurtainEffect、LevelScrollEffect、RandomCurtainEffect、RotateZoomEffect、ThreeDTurn、ZoomEffect可以通过实现IEffects接口来实现自定义特效DirectUI类:DirectUI包含几个DirectUI控件。
用于对以上控件的扩展和美化。
部分LayeredControl包含DUIControl属性可以向其添加DirectUI控件。
支持通过集合编辑器里面添加,只是不能在集合编辑器里面绑定事件,需要手动写代码绑定。
通过集合编辑器添加的控件不一定能马上在设计器里看到效果,因为会有图像缓存,可能需要尝试调整控件大小等方式强制控件重绘,就可以看到效果了。
LayeredControl可以支持在普通窗体上使用。
2024/2/17 1:35:18 19.65MB LayeredSkinT c# 界面 动画
1
(注意,本控件有5月7日修改的最新版,您可以http://myyouping.download.csdn.net/看到并下载。
建议您下载5月7日修改版控件,该版有控件源代码)本控件系VB6.0编写,有控件的原代码,可以直接打印MSHFlexGrid控件(如果控件的数据中有图片,图片也会打印出来)的内容,省时省力,并提供多种打印方式,如多栏打印、分页打印、自动缩放打印、工资条样式打印等功能。
另外控件提供textout函数输出文本内容,cellout函数输出一个单元格(与textout函数的区别是有边框),此两个函数都具有自动换页功能,即如果输出的文本大于1页,可以自动增加新页并打印到下一页。
控件还提供了输出图片的功能,使用CellOutPicture可能打印图片。
本控件可以打印眉页和页脚,还可以将打印的内容(包括图片)保存为本控件专用的报表格式文件,以便以后打开预览并打印(但不能更改页面格式)。
控件均以VB的内置单位TWIPS为计量单位,您可以使用本控件的cmtotwips方法将厘米换算成VB的twips,用mmtotwips将毫米换算成twips。
本控件附有VB使用实例,具体使用方法请参照实例。
1
共 95 条记录 首页 上一页 下一页 尾页
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡