设为首页 加入收藏

TOP

基于springMVC 3.0项目开发实例(六)
2014-11-23 19:17:51 】 浏览:1845
Tags:基于 springMVC 3.0 项目 开发实例
p/jstl/core"%>

${requestScope.a}

${requestScope.user.uname}

地址栏输入:http://localhost:8080/springmvc03/user.do method=reg

结果为:

基于spring 3.0mvc 框架的文件上传实现

1. spring使用了apache-commons下得上传组件,因此,我们需要引入两个jar包:

1. apache-commons-fileupload.jar

2. apache-commons-io.jar

2. 在springmvc-servlet.xml配置文件中,增加CommonsMultipartResoler配置:

"multipartResolver"

class="org.springframework.web.multipart.commons.CommonsMultipartResolver">

"defaultEncoding"value= "gbk"/>

"maxInMemorySize"value= "10240"/>

"uploadTempDir"value= "/upload/"/>

"maxUploadSize"value= "-1"/>

3. 建立upload.jsp页面,内容如下:

<%@ page language="java"import="java.util.*"pageEncoding="gbk"%>

测试<u>springmvc</u>中上传的实现

"upload.do" method= "post"enctype= "multipart/form-data">

"text"name= "name"/>

"file"name= "file"/>

"submit"/>

4. 建立控制器,代码如下:

package com.sxt.web;

import java.io.File;

import java.util.Date;

import javax.servlet.ServletContext;

import org.springframework.stereotype.Controller;

import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.RequestMethod;

import org.springframework.web.bind.annotation.RequestParam;

import org.springframework.web.context.ServletContextAware;

import org.springframework.web.multipart.commons.CommonsMultipartFile;

@Controller

public class FileUploadController implements ServletContextAware {

private ServletContext servletContext;

@Override

public void setServletContext(ServletContext context) {

this.servletContext = context;

}

@RequestMapping(value="/upload.do", method = RequestMethod.POST)

public String handleUploadData(String name,@RequestParam("file")[微软用户2] CommonsMultipartFile file){

if (!file.isEmpty()) {

String path = this.servletContext.getRealPath("/tmp/"); //获取本地存储路径

System.out.println(path);

String fileName = file.getOriginalFilename();

String fileType = fileName.substring(fileName.lastIndexOf("."));

System.out.println(fileType);

File file2 = new File(path,new Date().getTime() + fileType); //新建一个文件

try {

file.getFileItem().write(file2); //将上传的文件写入新建的文件中

} catch (Exception e) {

e.printStackTrace();

}

return "redirect:upload_ok.jsp";

}else{

return "redirect:upload_error.jsp";

}

}

}

5. 建立upload_ok.jsp页面

<%@ page language="java"import="java.util.*"pageEncoding="gbk"%>

上传成功!

6. 建立upload_error.jsp页面

<%@page language="java"import="java.util.*"pageEncoding="gbk"%>

上传失败!

7. 发布项目,运行测试:http://localhost:8080/springmvc03/upload.jsp

进入项目发布后的目录,发现文件上传成功:

处理ajax请求

spring使用了jackson类库,帮助我们在java对象和json、xml数据之间的互相转换。他可以将控制器返回的对象直接转换成json数据,供客户端使用。客户端也可以传送json数据到服务器进行直接转换。使用步骤如下:

1. 项目中需要引入如下两个jar包:

jackson-core-asl-1.7.2jar

jackson-mapper-asl-1.7.2jar

2. spring配置文件中修改:

"org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">

"cacheSeconds"value= "0"/>

"messageConverters">

"org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">

3. 客户端代码a.jsp如下:

<%@page language="java"import="java.util.*"pageEncoding="gbk"%>

<%

String path = request.getContextPath();

String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";

%>

"<%=basePath%> ">

My JSP 'index.jsp' starting page</span></font></td> </tr> </table> <!--//投票--> <table width="98%" border="0" cellspacing="0" cellpadding="0" style='TABLE-LAYOUT: fixed;WORD-WRAP: break-word;' align="center"> <tr> </tr> <tr> <td colspan="2" align="center" class="page" height="25"><a href="bencandy.php?fid=76&aid=15304&page=1" title="首页">首页</A> <a href="bencandy.php?fid=76&aid=15304&page=5" title="上一页">上一页</A> <a href="bencandy.php?fid=76&aid=15304&page=3" title="第3页">3</a> <a href="bencandy.php?fid=76&aid=15304&page=4" title="第4页">4</a> <a href="bencandy.php?fid=76&aid=15304&page=5" title="第5页">5</a> <a href='#'><font color=red>6</font></a> <a href="bencandy.php?fid=76&aid=15304&page=7" title="第7页">7</a> <a href="bencandy.php?fid=76&aid=15304&page=8" title="第8页">8</a> <a href="bencandy.php?fid=76&aid=15304&page=7" title="下一页">下一页</A> <a href="bencandy.php?fid=76&aid=15304&page=8" title="尾页">尾页</A> <a href='#'><font color=red>6</font>/8/8</a></td> </tr> <tr align="right"> <td colspan="2" height="25" > <SCRIPT LANGUAGE="JavaScript" src="https://www.cppentry.com/images/default/bencandy.js"></SCRIPT> 【<a href="javascript:doZoom(18)">大</a> <a href="javascript:doZoom(14)">中</a> <a href="javascript:doZoom(12)">小</a>】【<a href="javascript:doPrint()">打印</a>】 <input type=hidden value=1 name="h1" id="h1"> 【<a href="javascript:ft(1)" id="Maiweb1">繁体</a>】【<a href="https://www.cppentry.com/member/post.php?job=postnew&fid=76" target=_blank>投稿</a>】【<a href="https://www.cppentry.com/do/job.php?job=collect&fid=76&id=15304">收藏</a>】 【<a href="https://www.cppentry.com/do/job.php?job=recommend&fid=76&id=15304" target=_blank>推荐</a>】【<a href="https://www.cppentry.com/do/job.php?job=report&fid=76&id=15304" target=_blank>举报</a>】【<a href="https://www.cppentry.com/do/comment.php?fid=76&id=15304" target=_blank>评论</a>】 【<a href="javascript:window.close()">关闭</a>】 【<a href="javascript:window.close()"></a><a href="#">返回顶部</a>】</td> </tr> <tr> <td colspan="2" style="text-align:right"> </td> </tr> <tr class="nextpage"> <td width="50%" align="left"><a href="bencandy.php?fid=76&id=15305" onclick="">上一篇</a>:<a href="bencandy.php?fid=76&id=15305" onclick="" title="ftk学习记(list篇)">ftk学习记(list篇)</a></td> <td width="50%" align="right" height="25"><a href="bencandy.php?fid=76&id=15303" onclick="">下一篇</a>:<a href="bencandy.php?fid=76&id=15303" onclick="" title="策略模式Strategy――回家乘什么车?">策略模式Strategy――回家乘什么..</a></td> </tr> <tr> </tr> </table> </td> </tr> <tr> <td class="foot"> <h3 class="L"></h3> <h3 class="R"></h3> </td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0" align="center" class="dragTable" id="view_article_bbs"> <tr> <td class="head"> <h3 class="L"></h3> <span class="TAG"> </span> <h3 class="R"></h3> </td> </tr> <tr> <td class="middle"> <div class="_y4dmqbalj5"></div> <script type="text/javascript"> (window.slotbydup = window.slotbydup || []).push({ id: "u6920162", container: "_y4dmqbalj5", async: true }); </script> <!-- 多条广告如下脚本只需引入一次 --> <script type="text/javascript" src="//cpro.baidustatic.com/cpro/ui/cm.js" async="async" defer="defer" > </script> </td> </tr> <tr> <td class="foot"> <h3 class="L"></h3> <h3 class="R"></h3> </td> </tr> </table> </div> <div class="Side"> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="dragTable"> <tr> <td class="head"> <h3 class="L"></h3> <span class="TAG">最新文章</span> <h3 class="R"></h3> </td> </tr> <tr> <td class="middle" align="left"> <div class='side_t' style='background:url(https://www.cppentry.com/images/default/flea_line.gif) repeat-x bottom;width:98%;padding-top:6px;padding-bottom:5px;'><A target='_self' HREF='https://www.cppentry.com/bencandy.php?fid=76&id=273664' title='一键发布多平台方案' style='font-size:13px;'>一键发布多平台方案</A></div><div class='side_t' style='background:url(https://www.cppentry.com/images/default/flea_line.gif) repeat-x bottom;width:98%;padding-top:6px;padding-bottom:5px;'><A target='_self' HREF='https://www.cppentry.com/bencandy.php?fid=76&id=273663' title='三、若依获取用户角色和权限' style='font-size:13px;'>三、若依获取用户角色和权限</A></div><div class='side_t' style='background:url(https://www.cppentry.com/images/default/flea_line.gif) repeat-x bottom;width:98%;padding-top:6px;padding-bottom:5px;'><A target='_self' HREF='https://www.cppentry.com/bencandy.php?fid=76&id=273662' title='LeetCode297:hard级别中最简单的存在,java版,用时击败98%,内存击败百分之九十九' style='font-size:13px;'>LeetCode297:hard级别中最简单的存..</A></div><div class='side_t' style='background:url(https://www.cppentry.com/images/default/flea_line.gif) repeat-x bottom;width:98%;padding-top:6px;padding-bottom:5px;'><A target='_self' HREF='https://www.cppentry.com/bencandy.php?fid=76&id=273661' title='10分钟从实现和使用场景聊聊并发包下的阻塞队列' style='font-size:13px;'>10分钟从实现和使用场景聊聊并发包..</A></div><div class='side_t' style='background:url(https://www.cppentry.com/images/default/flea_line.gif) repeat-x bottom;width:98%;padding-top:6px;padding-bottom:5px;'><A target='_self' HREF='https://www.cppentry.com/bencandy.php?fid=76&id=273660' title='Nacos实战(19)-Nacos健康检查机制:保障你的服务稳定运行!' style='font-size:13px;'>Nacos实战(19)-Nacos健康检查机制:..</A></div> </td> </tr> <tr> <td class="foot"> <h3 class="L"></h3> <h3 class="R"></h3> </td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="dragTable"> <tr> <td class="head"> <h3 class="L"></h3> <span class="TAG">热门文章</span> <h3 class="R"></h3> </td> </tr> <tr> <td class="middle" align="left"> <div class='side_t' style='background:url(https://www.cppentry.com/images/default/flea_line.gif) repeat-x bottom;width:98%;padding-top:6px;padding-bottom:5px;'><A target='_self' HREF='https://www.cppentry.com/bencandy.php?fid=76&id=49931' title='Java表格模型事件示例 ' style='font-size:13px;'>Java表格模型事件示例 </A></div><div class='side_t' style='background:url(https://www.cppentry.com/images/default/flea_line.gif) repeat-x bottom;width:98%;padding-top:6px;padding-bottom:5px;'><A target='_self' HREF='https://www.cppentry.com/bencandy.php?fid=76&id=57274' title='Java主线程等待子线程、线程池 ' style='font-size:13px;'>Java主线程等待子线程、线程池 </A></div><div class='side_t' style='background:url(https://www.cppentry.com/images/default/flea_line.gif) repeat-x bottom;width:98%;padding-top:6px;padding-bottom:5px;'><A target='_self' HREF='https://www.cppentry.com/bencandy.php?fid=76&id=152892' title='简单实体类和xml文件的相互转换' style='font-size:13px;'>简单实体类和xml文件的相互转换</A></div><div class='side_t' style='background:url(https://www.cppentry.com/images/default/flea_line.gif) repeat-x bottom;width:98%;padding-top:6px;padding-bottom:5px;'><A target='_self' HREF='https://www.cppentry.com/bencandy.php?fid=76&id=146464' title='JavaEE开发之SpringMVC中的自定义消息转换器与文件上传' style='font-size:13px;'>JavaEE开发之SpringMVC中的自定义消..</A></div><div class='side_t' style='background:url(https://www.cppentry.com/images/default/flea_line.gif) repeat-x bottom;width:98%;padding-top:6px;padding-bottom:5px;'><A target='_self' HREF='https://www.cppentry.com/bencandy.php?fid=76&id=164726' title='我们为什么要使用 AOP' style='font-size:13px;'>我们为什么要使用 AOP</A></div> </td> </tr> <tr> <td class="foot"> <h3 class="L"></h3> <h3 class="R"></h3> </td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="dragTable"> <tr> <td class="head"> <h3 class="L"></h3> <span class="TAG">Hot 文章</span> <h3 class="R"></h3> </td> </tr> <tr> <td class="middle" align="left"> <div class='side_t' style='background:url(https://www.cppentry.com/images/default/flea_line.gif) repeat-x bottom;width:98%;padding-top:6px;padding-bottom:5px;'><A target='_self' HREF='https://www.cppentry.com/bencandy.php?fid=76&id=49931' title='Java表格模型事件示例 ' style='font-size:13px;'>Java表格模型事件示例 </A></div><div class='side_t' style='background:url(https://www.cppentry.com/images/default/flea_line.gif) repeat-x bottom;width:98%;padding-top:6px;padding-bottom:5px;'><A target='_self' HREF='https://www.cppentry.com/bencandy.php?fid=76&id=57274' title='Java主线程等待子线程、线程池 ' style='font-size:13px;'>Java主线程等待子线程、线程池 </A></div><div class='side_t' style='background:url(https://www.cppentry.com/images/default/flea_line.gif) repeat-x bottom;width:98%;padding-top:6px;padding-bottom:5px;'><A target='_self' HREF='https://www.cppentry.com/bencandy.php?fid=76&id=152892' title='简单实体类和xml文件的相互转换' style='font-size:13px;'>简单实体类和xml文件的相互转换</A></div><div class='side_t' style='background:url(https://www.cppentry.com/images/default/flea_line.gif) repeat-x bottom;width:98%;padding-top:6px;padding-bottom:5px;'><A target='_self' HREF='https://www.cppentry.com/bencandy.php?fid=76&id=146464' title='JavaEE开发之SpringMVC中的自定义消息转换器与文件上传' style='font-size:13px;'>JavaEE开发之SpringMVC中的自定义消..</A></div><div class='side_t' style='background:url(https://www.cppentry.com/images/default/flea_line.gif) repeat-x bottom;width:98%;padding-top:6px;padding-bottom:5px;'><A target='_self' HREF='https://www.cppentry.com/bencandy.php?fid=76&id=164726' title='我们为什么要使用 AOP' style='font-size:13px;'>我们为什么要使用 AOP</A></div> </td> </tr> <tr> <td class="foot"> <h3 class="L"></h3> <h3 class="R"></h3> </td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="dragTable"> <tr> <td class="head"> <h3 class="L"></h3> <span class="TAG">Python</span> <h3 class="R"></h3> </td> </tr> <tr> <td class="middle" valign="top" align="left"> <table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273665">819</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273665"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273665" target="DiggIframe_273665" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=77&id=273665" target="_blank" style=";">Django框架系列目录</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273665" width=0 height=0 name="DiggIframe_273665" id="DiggIframe_273665"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273601">655</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273601"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273601" target="DiggIframe_273601" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=77&id=273601" target="_blank" style=";">创建Anaconda虚拟Pyt</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273601" width=0 height=0 name="DiggIframe_273601" id="DiggIframe_273601"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273600">1254</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273600"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273600" target="DiggIframe_273600" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=77&id=273600" target="_blank" style=";">Python获取主目录的</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273600" width=0 height=0 name="DiggIframe_273600" id="DiggIframe_273600"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273599">893</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273599"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273599" target="DiggIframe_273599" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=77&id=273599" target="_blank" style=";">Python中跨越多个文</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273599" width=0 height=0 name="DiggIframe_273599" id="DiggIframe_273599"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273598">543</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273598"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273598" target="DiggIframe_273598" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=77&id=273598" target="_blank" style=";">chatgpt使用python写</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273598" width=0 height=0 name="DiggIframe_273598" id="DiggIframe_273598"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273597">745</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273597"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273597" target="DiggIframe_273597" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=77&id=273597" target="_blank" style=";"> 一条爬虫抓取一个小</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273597" width=0 height=0 name="DiggIframe_273597" id="DiggIframe_273597"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273596">614</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273596"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273596" target="DiggIframe_273596" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=77&id=273596" target="_blank" style=";">Python教程:sys.std</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273596" width=0 height=0 name="DiggIframe_273596" id="DiggIframe_273596"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273595">673</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273595"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273595" target="DiggIframe_273595" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=77&id=273595" target="_blank" style=";">Python教程(13)——P</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273595" width=0 height=0 name="DiggIframe_273595" id="DiggIframe_273595"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273594">860</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273594"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273594" target="DiggIframe_273594" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=77&id=273594" target="_blank" style=";">Docker安装配置Jupyt</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273594" width=0 height=0 name="DiggIframe_273594" id="DiggIframe_273594"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273593">741</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273593"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273593" target="DiggIframe_273593" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=77&id=273593" target="_blank" style=";">【matplotlib基础】-</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273593" width=0 height=0 name="DiggIframe_273593" id="DiggIframe_273593"></iframe></div> </td> </tr> </table> </td> </tr> <tr> <td class="foot"> <h3 class="L"></h3> <h3 class="R"></h3> </td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="dragTable"> <td class="head"> <h3 class="L"></h3> <span class="TAG">C 语言</span> <h3 class="R"></h3> </td> <tr> <td class="middle" valign="top" align="left"> <table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273461">543</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273461"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273461" target="DiggIframe_273461" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=45&id=273461" target="_blank" style=";">C语言 入坑总结</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273461" width=0 height=0 name="DiggIframe_273461" id="DiggIframe_273461"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273460">631</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273460"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273460" target="DiggIframe_273460" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=45&id=273460" target="_blank" style=";">C数据结构-线性表之顺序表</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273460" width=0 height=0 name="DiggIframe_273460" id="DiggIframe_273460"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273459">1393</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273459"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273459" target="DiggIframe_273459" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=45&id=273459" target="_blank" style=";">Programming abstractions in..</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273459" width=0 height=0 name="DiggIframe_273459" id="DiggIframe_273459"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273458">554</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273458"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273458" target="DiggIframe_273458" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=45&id=273458" target="_blank" style=";">C语言 内存布局</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273458" width=0 height=0 name="DiggIframe_273458" id="DiggIframe_273458"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273457">841</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273457"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273457" target="DiggIframe_273457" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=45&id=273457" target="_blank" style=";">最全的李慧芹APUE-标准IO笔记</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273457" width=0 height=0 name="DiggIframe_273457" id="DiggIframe_273457"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273456">751</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273456"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273456" target="DiggIframe_273456" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=45&id=273456" target="_blank" style=";">alog一个日志库</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273456" width=0 height=0 name="DiggIframe_273456" id="DiggIframe_273456"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273411">606</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273411"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273411" target="DiggIframe_273411" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=45&id=273411" target="_blank" style=";">1.1.初识STM32及新建工程</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273411" width=0 height=0 name="DiggIframe_273411" id="DiggIframe_273411"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273137">808</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273137"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273137" target="DiggIframe_273137" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=45&id=273137" target="_blank" style=";">codeblock安装及汉化教程</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273137" width=0 height=0 name="DiggIframe_273137" id="DiggIframe_273137"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273136">624</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273136"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273136" target="DiggIframe_273136" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=45&id=273136" target="_blank" style=";">东方博宜OJ1000 熟悉一下Onli..</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273136" width=0 height=0 name="DiggIframe_273136" id="DiggIframe_273136"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273135">1352</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273135"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273135" target="DiggIframe_273135" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=45&id=273135" target="_blank" style=";">关于指针与引用传递的效率问题</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273135" width=0 height=0 name="DiggIframe_273135" id="DiggIframe_273135"></iframe></div> </td> </tr> </table> </td> </tr> <tr> <td class="foot"> <h3 class="L"></h3> <h3 class="R"></h3> </td> </tr> </table> <div style="float:left;margin-top: 10px;margin-left: 5px;"><script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <ins class="adsbygoogle" style="display:block" data-ad-format="fluid" data-ad-layout="image-top" data-ad-layout-key="-8f+29-ff+cn+o3" data-ad-client="ca-pub-3873923678443673" data-ad-slot="6937208361"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script></div> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="dragTable"> <td class="head"> <h3 class="L"></h3> <span class="TAG">C++基础</span> <h3 class="R"></h3> </td> <tr> <td class="middle" valign="top" align="left"> <table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273634">1224</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273634"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273634" target="DiggIframe_273634" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=49&id=273634" target="_blank" style=";">KMP 字符串匹配 学习笔记</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273634" width=0 height=0 name="DiggIframe_273634" id="DiggIframe_273634"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273605">903</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273605"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273605" target="DiggIframe_273605" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=49&id=273605" target="_blank" style=";">2.10 PE结构:重建重定位表结..</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273605" width=0 height=0 name="DiggIframe_273605" id="DiggIframe_273605"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273604">578</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273604"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273604" target="DiggIframe_273604" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=49&id=273604" target="_blank" style=";">【Qt6】列表模型——抽象基类</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273604" width=0 height=0 name="DiggIframe_273604" id="DiggIframe_273604"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273603">702</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273603"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273603" target="DiggIframe_273603" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=49&id=273603" target="_blank" style=";">2.12 PE结构:实现PE字节注入</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273603" width=0 height=0 name="DiggIframe_273603" id="DiggIframe_273603"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273602">628</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273602"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273602" target="DiggIframe_273602" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=49&id=273602" target="_blank" style=";">学习笔记</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273602" width=0 height=0 name="DiggIframe_273602" id="DiggIframe_273602"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273521">569</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273521"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273521" target="DiggIframe_273521" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=49&id=273521" target="_blank" style=";">2.14 PE结构:地址之间的转换</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273521" width=0 height=0 name="DiggIframe_273521" id="DiggIframe_273521"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273520">621</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273520"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273520" target="DiggIframe_273520" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=49&id=273520" target="_blank" style=";">4.1 应用层Hook挂钩原理分析</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273520" width=0 height=0 name="DiggIframe_273520" id="DiggIframe_273520"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273519">980</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273519"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273519" target="DiggIframe_273519" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=49&id=273519" target="_blank" style=";">使用Vulkan-Loader将ncnn代码..</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273519" width=0 height=0 name="DiggIframe_273519" id="DiggIframe_273519"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273518">644</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273518"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273518" target="DiggIframe_273518" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=49&id=273518" target="_blank" style=";">4.3 IAT Hook 挂钩技术</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273518" width=0 height=0 name="DiggIframe_273518" id="DiggIframe_273518"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273515">551</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273515"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273515" target="DiggIframe_273515" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=49&id=273515" target="_blank" style=";">C++ 学习笔记、01 | 开发简单..</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273515" width=0 height=0 name="DiggIframe_273515" id="DiggIframe_273515"></iframe></div> </td> </tr> </table> </td> </tr> <tr> <td class="foot"> <h3 class="L"></h3> <h3 class="R"></h3> </td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="dragTable"> <td class="head"> <h3 class="L"></h3> <span class="TAG">大数据基础</span> <h3 class="R"></h3> </td> <tr> <td class="middle" valign="top" align="left"> <table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_224318">1020</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_224318"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=224318" target="DiggIframe_224318" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=120&id=224318" target="_blank" style=";">多线程: 线程的同步</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=224318" width=0 height=0 name="DiggIframe_224318" id="DiggIframe_224318"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_224317">580</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_224317"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=224317" target="DiggIframe_224317" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=120&id=224317" target="_blank" style=";">vertica-->kafka-</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=224317" width=0 height=0 name="DiggIframe_224317" id="DiggIframe_224317"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_224316">903</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_224316"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=224316" target="DiggIframe_224316" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=120&id=224316" target="_blank" style=";">kafka   Partit</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=224316" width=0 height=0 name="DiggIframe_224316" id="DiggIframe_224316"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_224315">657</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_224315"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=224315" target="DiggIframe_224315" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=120&id=224315" target="_blank" style=";">解决android studio</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=224315" width=0 height=0 name="DiggIframe_224315" id="DiggIframe_224315"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_224314">595</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_224314"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=224314" target="DiggIframe_224314" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=120&id=224314" target="_blank" style=";">Kafka史上最详细原理</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=224314" width=0 height=0 name="DiggIframe_224314" id="DiggIframe_224314"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_224313">621</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_224313"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=224313" target="DiggIframe_224313" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=120&id=224313" target="_blank" style=";">Error while fetchin</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=224313" width=0 height=0 name="DiggIframe_224313" id="DiggIframe_224313"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_224312">762</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_224312"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=224312" target="DiggIframe_224312" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=120&id=224312" target="_blank" style=";">【Kafka】安装与快速</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=224312" width=0 height=0 name="DiggIframe_224312" id="DiggIframe_224312"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_224311">496</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_224311"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=224311" target="DiggIframe_224311" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=120&id=224311" target="_blank" style=";">     &</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=224311" width=0 height=0 name="DiggIframe_224311" id="DiggIframe_224311"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_224310">659</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_224310"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=224310" target="DiggIframe_224310" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=119&id=224310" target="_blank" style=";">flume读取日志数据写</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=224310" width=0 height=0 name="DiggIframe_224310" id="DiggIframe_224310"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_224309">650</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_224309"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=224309" target="DiggIframe_224309" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=119&id=224309" target="_blank" style=";">Authentication plug</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=224309" width=0 height=0 name="DiggIframe_224309" id="DiggIframe_224309"></iframe></div> </td> </tr> </table> </td> </tr> <tr> <td class="foot"> <h3 class="L"></h3> <h3 class="R"></h3> </td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="dragTable"> <td class="head"> <h3 class="L"></h3> <span class="TAG">linux编程基础</span> <h3 class="R"></h3> </td> <tr> <td class="middle" valign="top" align="left"> <table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_272510">720</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_272510"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=272510" target="DiggIframe_272510" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=54&id=272510" target="_blank" style=";">如何在Python中过滤字符串列表</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=272510" width=0 height=0 name="DiggIframe_272510" id="DiggIframe_272510"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_272509">728</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_272509"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=272509" target="DiggIframe_272509" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=54&id=272509" target="_blank" style=";">如何在Python中读写文件</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=272509" width=0 height=0 name="DiggIframe_272509" id="DiggIframe_272509"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_272508">748</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_272508"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=272508" target="DiggIframe_272508" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=54&id=272508" target="_blank" style=";">初识Lambda表达式</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=272508" width=0 height=0 name="DiggIframe_272508" id="DiggIframe_272508"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_272507">806</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_272507"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=272507" target="DiggIframe_272507" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=54&id=272507" target="_blank" style=";">深入理解Python中的列表推导..</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=272507" width=0 height=0 name="DiggIframe_272507" id="DiggIframe_272507"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_272506">1028</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_272506"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=272506" target="DiggIframe_272506" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=54&id=272506" target="_blank" style=";">如何在Python中执行外部命令</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=272506" width=0 height=0 name="DiggIframe_272506" id="DiggIframe_272506"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_272505">1088</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_272505"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=272505" target="DiggIframe_272505" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=54&id=272505" target="_blank" style=";">设计模式之单例模式理解</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=272505" width=0 height=0 name="DiggIframe_272505" id="DiggIframe_272505"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_272504">601</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_272504"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=272504" target="DiggIframe_272504" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=54&id=272504" target="_blank" style=";">跟我学Python GUI编程系列 - ..</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=272504" width=0 height=0 name="DiggIframe_272504" id="DiggIframe_272504"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_272503">1366</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_272503"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=272503" target="DiggIframe_272503" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=54&id=272503" target="_blank" style=";">21道并发编程面试题</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=272503" width=0 height=0 name="DiggIframe_272503" id="DiggIframe_272503"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_272502">615</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_272502"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=272502" target="DiggIframe_272502" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=54&id=272502" target="_blank" style=";">深入理解 Hadoop 序列化</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=272502" width=0 height=0 name="DiggIframe_272502" id="DiggIframe_272502"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_272501">985</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_272501"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=272501" target="DiggIframe_272501" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=54&id=272501" target="_blank" style=";">CAS无锁机制深入理解</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=272501" width=0 height=0 name="DiggIframe_272501" id="DiggIframe_272501"></iframe></div> </td> </tr> </table> </td> </tr> <tr> <td class="foot"> <h3 class="L"></h3> <h3 class="R"></h3> </td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="dragTable"> <td class="head"> <h3 class="L"></h3> <span class="TAG">C/C++面试题目</span> <h3 class="R"></h3> </td> <tr> <td class="middle" valign="top" align="left"> <table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273634">1224</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273634"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273634" target="DiggIframe_273634" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=49&id=273634" target="_blank" style=";">KMP 字符串匹配 学习</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273634" width=0 height=0 name="DiggIframe_273634" id="DiggIframe_273634"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273604">578</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273604"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273604" target="DiggIframe_273604" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=49&id=273604" target="_blank" style=";">【Qt6】列表模型——</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273604" width=0 height=0 name="DiggIframe_273604" id="DiggIframe_273604"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273605">903</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273605"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273605" target="DiggIframe_273605" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=49&id=273605" target="_blank" style=";">2.10 PE结构:重建重</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273605" width=0 height=0 name="DiggIframe_273605" id="DiggIframe_273605"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273602">628</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273602"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273602" target="DiggIframe_273602" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=49&id=273602" target="_blank" style=";">学习笔记</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273602" width=0 height=0 name="DiggIframe_273602" id="DiggIframe_273602"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273603">702</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273603"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273603" target="DiggIframe_273603" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=49&id=273603" target="_blank" style=";">2.12 PE结构:实现PE</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273603" width=0 height=0 name="DiggIframe_273603" id="DiggIframe_273603"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273521">569</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273521"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273521" target="DiggIframe_273521" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=49&id=273521" target="_blank" style=";">2.14 PE结构:地址之</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273521" width=0 height=0 name="DiggIframe_273521" id="DiggIframe_273521"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273519">980</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273519"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273519" target="DiggIframe_273519" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=49&id=273519" target="_blank" style=";">使用Vulkan-Loader将</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273519" width=0 height=0 name="DiggIframe_273519" id="DiggIframe_273519"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273520">621</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273520"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273520" target="DiggIframe_273520" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=49&id=273520" target="_blank" style=";">4.1 应用层Hook挂钩</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273520" width=0 height=0 name="DiggIframe_273520" id="DiggIframe_273520"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273518">644</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273518"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273518" target="DiggIframe_273518" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=49&id=273518" target="_blank" style=";">4.3 IAT Hook 挂钩技</a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273518" width=0 height=0 name="DiggIframe_273518" id="DiggIframe_273518"></iframe></div> </td> </tr> </table><table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-bottom:5px;"> <tr> <td align="left" style="border-bottom:1px dotted #ccc;padding-bottom:3px;"> <div style="background:url(https://www.cppentry.com/images/default/sdigg.gif) no-repeat;width:44px;height:36px;float:left;"><div style="font-size:13px;text-align:center;height:14px;padding:0px;font-weight:bold;" id="DiggNum_273515">551</div><div style="text-align:center;font-size:12px;color:#FFF;width:44px;height:20px;overflow:hidden;" id="DiggDo_273515"><a href="https://www.cppentry.com/do/job.php?job=digg&type=vote&id=273515" target="DiggIframe_273515" style="font-size:12px;color:#FFF;">顶一下</a></div></div> <div style="margin-left:4px;float:left;"> <div><a href="https://www.cppentry.com/bencandy.php?fid=49&id=273515" target="_blank" style=";">C++ 学习笔记、01 | </a></div> </div> <div style="display:none;"><iframe src="https://www.cppentry.com/do/job.php?job=digg&type=getnum&id=273515" width=0 height=0 name="DiggIframe_273515" id="DiggIframe_273515"></iframe></div> </td> </tr> </table> </td> </tr> <tr> <td class="foot"> <h3 class="L"></h3> <h3 class="R"></h3> </td> </tr> </table> </div> </div> <div class="cleardiv"></div> <!-- --> <SCRIPT LANGUAGE="JavaScript"> <!--//目的是为了做风格方便 document.write('</div>'); //--> </SCRIPT> <SCRIPT LANGUAGE="JavaScript"> <!-- clickEdit.init(); //--> </SCRIPT> <div id="copyright"> Copyright@https://www.cppentry.com all rights reserved <a href="https://beian.miit.gov.cn/" target="_blank">粤ICP备13067022号-3</a><br> </div> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?78d755440c3d5084c68b0e867d68f5f7"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> </body> </html>