<?xml version='1.0' encoding='utf-8'?>
<rss version='2.0' xmlns:dc='http://purl.org/dc/elements/1.1/'>
<channel>
<title>360doc--凡尘一滴的文章</title>
<description>360doc--凡尘一滴的文章</description>
<link>http://www.360doc.com/rssfeed.aspx</link>
<generator>360doc (http://www.360doc.com)</generator>
<language>zh-cn</language>
<docs>360doc--个人图书馆</docs>
<item>
<title>SWT 全接触</title>
<link>http://www.360doc.com/content/081227/19/7635_2211641.html</link>
<category>
</category>
<pubDate>2008-12-27 19:04:34</pubDate>
<description>
<blockquote>GC gc = new GC(image);GC.drawRoundedRectangle(int x,int y,int width,int height,int arcWidth,int arcHeight);GC.drawArc(int x, int y, int width, int height, int startAngle, int endAngle);GC.fillPolygon(int[]);gc.fillPolygon(new int[] { 25,5,45,45,5,45 }) GC.fillRectangle(int x, int y, int width, int height);GC.fillRoundedRectangle(int x, int y, int width, int height, int arcWidth, int arcHeight);</blockquote></description>
<dc:creator></dc:creator>
</item>
<item>
<title>swt与awt/swing互嵌 - 红流 - CSDNBlog</title>
<link>http://www.360doc.com/content/081214/10/7635_2120288.html</link>
<category>
</category>
<pubDate>2008-12-14 10:49:35</pubDate>
<description>
<blockquote>swt与awt/swing互嵌 - 红流 - CSDNBlog.SWT中嵌入awt/swing控件：final Shell shell = new Shell(display,SWT.EMBEDDED);Frame frame = SWT_AWT.new_Frame(shell);frame.add(btnClose,BorderLayout.Frame frame = SWT_AWT.new_Frame(p);swing/awt中使用swt。final Shell shell = SWT_AWT.new_Shell(display,canvas);Button button = new Button(shell,SWT.PUSH);final Shell shell = new Shell(display,SWT.NO_BACKGROUND);</blockquote></description>
<dc:creator></dc:creator>
</item>
<item>
<title>在 Eclipse RCP 里使用 JFreeChart，轻松实现画图_软件学园_科技时代...</title>
<link>http://www.360doc.com/content/081213/23/7635_2118423.html</link>
<category>
</category>
<pubDate>2008-12-13 23:34:28</pubDate>
<description>
<blockquote>jcommon-1.0.10.jarjfreechart-1.0.6.jarjfreechart-1.0.6-experimental.jarjfreechart-1.0.6-swt.jarswtgraphics2d.jar.10import org.jfree.chart.plot.37 private static JFreeChart createChart(PieDataset dataset) {38.更多关于RCP的文章：通过Outlook用Eclipse RCP 轻松发邮件Eclipse RCP状态栏操作Eclipse RCP 与 Excel的交互入门文章：RCP学习笔记（一）RCP入门介绍RCP学习笔记系列（二）创建HelloWorld.</blockquote></description>
<dc:creator></dc:creator>
</item>
<item>
<title>SWT中使用JFreeChart（无需SWT_AWT） - 实践-全程 - BlogJav...</title>
<link>http://www.360doc.com/content/081213/23/7635_2118285.html</link>
<category>
</category>
<pubDate>2008-12-13 23:09:38</pubDate>
<description>
<blockquote></blockquote></description>
<dc:creator></dc:creator>
</item>
<item>
<title>如何在SWT中使用AWT、SWING组件--流子</title>
<link>http://www.360doc.com/content/081213/23/7635_2118275.html</link>
<category>
</category>
<pubDate>2008-12-13 23:07:08</pubDate>
<description>
<blockquote>如何在SWT中使用AWT、SWING组件--流子。import org.eclipse.swt.awt.SWT_AWT;Frame frame = SWT_AWT.new_Frame(comp);//只能放frame不能放JFrame        java.awt.Button button = new java.awt.Button();//可以放JButton等Swing控件        button.setLabel(&quot;AWT button&quot;);        frame.add(button);关键之处在于SWT_AWT.new_Frame()方法，得到的是一个java.awt.Frame对象，要显示的AWT，SWING内容都放在它上面就好。</blockquote></description>
<dc:creator></dc:creator>
</item>
<item>
<title>在awt/swing程序中添加swt (Browser控件的使用)【转】 - Picses...</title>
<link>http://www.360doc.com/content/081213/23/7635_2118242.html</link>
<category>
</category>
<pubDate>2008-12-13 23:02:31</pubDate>
<description>
<blockquote>在awt/swing程序中添加swt (Browser控件的使用)【转】 - Picses...SWT_AWT的思想简单说就是利用一个AWT里的Canvas建立一个Shell，然后就可以往这个Shell里添swt的东西了，至于canvas放在哪就无所谓了，可能在一个单独的窗口里，也可在某个大窗口的一部分中。private Canvas canvas;dis.syncExec( new Runnable() {   public void run() {    Shell shell = SWT_AWT.new_Shell(displayThread.getDisplay(), canvas );</blockquote></description>
<dc:creator></dc:creator>
</item>
<item>
<title>在SWT里显示AWT对象 - 八进制 - 博客园</title>
<link>http://www.360doc.com/content/081213/22/7635_2118226.html</link>
<category>
</category>
<pubDate>2008-12-13 22:59:50</pubDate>
<description>
<blockquote>在SWT里显示AWT对象 - 八进制 - 博客园。今天遇到一个问题，就是要在一个Eclipse插件里显示JFreeChart的图形，因为后者是基于Java2D的，要把图形显示在SWT应用程序里需要利用SWT-AWT桥接器来实现，虽说桥接的方式多半会伴随着性能下降，但总归是一个解决方法。关键之处在于SWT_AWT.new_Frame()方法，得到的是一个java.awt.Frame对象，要显示的AWT内容都放在它上面就好。</blockquote></description>
<dc:creator></dc:creator>
</item>
<item>
<title>让 Eclipse 插件程序具有二维作图能力（1）</title>
<link>http://www.360doc.com/content/081213/19/7635_2116776.html</link>
<category>
</category>
<pubDate>2008-12-13 19:52:09</pubDate>
<description>
<blockquote>. 创建 SWT 图像。知道了图像数据就可以容易地将 AWT 图像转换为 SWT 图像。gc.drawImage(swtImage, clip.x, clip.y, clip.width, clip.height,clip.x, clip.y, clip.width, clip.height);graphics.drawImage(swtImage, clip.x, clip.y, clip.width, clip.height,clip.x, clip.y, clip.width, clip.height);字段 swtImageData 和 awtPixels 分别是在像素转移时包含 SWT 图像的像素值的缓冲区和用于包含 AWT 图像的像素值的缓冲区。</blockquote></description>
<dc:creator></dc:creator>
</item>
<item>
<title>多核开发入门指南 - 纯月部落 - CSDNBlog</title>
<link>http://www.360doc.com/content/081123/14/7635_1984923.html</link>
<category>
</category>
<pubDate>2008-11-23 14:05:12</pubDate>
<description>
<blockquote>单核时代，我们写Fibonacci代码的方法如下： int fib(int n)  {   if (n &lt; 2) return n;  else {       int x = fib(n-1);       int y = fib(n-2);       return x + y;      } }                         int main(int argc, char *argv[]) {          int n = atoi(argv[1]);  int result = fib(n);  printf(&quot;Fibonacci of %d is %d.\n&quot;, n, result);  return 0; }else {     int x = fib(n-1);int fib(int n) {   int i, j;</blockquote></description>
<dc:creator></dc:creator>
</item>
<item>
<title>群体性事件之殇：不要忽视事件的起因和社会背景</title>
<link>http://www.360doc.com/content/081121/21/7635_1974237.html</link>
<category>
</category>
<pubDate>2008-11-21 21:32:17</pubDate>
<description>
<blockquote>据新浪网（http://www.sina.com.cn 2008年11月18日07:45 新华网）报道： 11月17日甘肃省陇南市武都区东江镇30多名拆迁户集体到市委上访，市委和相关部门及时进行了接访，上访人员不听劝阻，聚集和围观群众陆续增加，最多时约2000人。这次陇南群体事件也再次警示，当前部分地方因群众利益受侵害、干群对立等因素造成的社会矛盾，已经尖锐、严重已到了接近爆炸边缘，以至于影响局部社会稳定的严峻现实。不明真相的群众飘过，</blockquote></description>
<dc:creator></dc:creator>
</item>
<item>
<title>java.net: Building GUIs with SwiXml</title>
<link>http://www.360doc.com/content/081118/20/7635_1953261.html</link>
<category>
</category>
<pubDate>2008-11-18 20:38:27</pubDate>
<description>
<blockquote>java.net: Building GUIs with SwiXml.SwiXml doesn''t introduce any new layout managers or component classes.For example, you could create one file for your main application screen, one for the help system, and one for the preferences dialog.We do tend to keep major components as separate SwiXml components: so the menu bar is one SwiXml component and the button bar is a different one.</blockquote></description>
<dc:creator></dc:creator>
</item>
<item>
<title>Java正则表达式教程</title>
<link>http://www.360doc.com/content/081102/14/7635_1865538.html</link>
<category>
</category>
<pubDate>2008-11-2 14:27:40</pubDate>
<description>
<blockquote>5.2  捕获组和字符类中的量词返回目录 　　到目前为止，仅仅测试了输入的字符串包括一个字符的量词。-foo-foo-foo- 9.5  在 java.lang.String 中等价的 Matcher 方法返回目录 　　为了使用方便，String 类看上去还不错地模仿了 Matcher 的两个方法：　　public String replaceFirst(String regex, String replacement)：使用给定的替换字符串替换该字符串中匹配了给定正则表达式的第一个子字符串。这个表达式会匹配什么字符串？</blockquote></description>
<dc:creator></dc:creator>
</item>
<item>
<title>eclipse和UML工具EA的连接方法 - 工具配置及优化编译 - 手机游戏开发网 Mo...</title>
<link>http://www.360doc.com/content/081102/09/7635_1864346.html</link>
<category>
</category>
<pubDate>2008-11-2 9:50:13</pubDate>
<description>
<blockquote>eclipse和UML工具EA的连接方法 - 工具配置及优化编译 - 手机游戏开发网 Mo...eclipse和UML工具EA的连接方法。首先要下载EA，地址是：http://www.sparxsystems.com.au/products/ea_downloads.html然后下载EA和Eclipse连接的工具MDG link for eclipse,地址是：http://www.sparxsystems.com.au/products/mdg_eclipse.html以上两个工具都是30天试用，但足够用了。没有这个目录的话说明link安装不成功，EA可以用，但不能和Eclipse连接。</blockquote></description>
<dc:creator></dc:creator>
</item>
<item>
<title>检查C  内存泄露的方法 - 指针与内存相关</title>
<link>http://www.360doc.com/content/081028/22/7635_1841071.html</link>
<category>
</category>
<pubDate>2008-10-28 22:24:59</pubDate>
<description>
<blockquote>检查C 内存泄露的方法 - 指针与内存相关怎样检查你的代码有没有内存泄露呢? 需要在前面加上这些代码：#ifdef _DEBUG#define DEBUG_CLIENTBLOCK   new( _CLIENT_BLOCK, __FILE__, __LINE__)#else.#define _CRTDBG_MAP_ALLOC#include &lt;stdlib.h&gt;#include &lt;crtdbg.h&gt;#include &lt;string.h&gt;#include &lt;stdio.h&gt;#ifdef _DEBUG#define new DEBUG_CLIENTBLOCK#endif._CrtSetDbgFlag ( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF );</blockquote></description>
<dc:creator></dc:creator>
</item>
<item>
<title>VC内存泄露检测 - VC常见错误与技巧</title>
<link>http://www.360doc.com/content/081028/22/7635_1840985.html</link>
<category>
</category>
<pubDate>2008-10-28 22:09:02</pubDate>
<description>
<blockquote>VC内存泄露检测 - VC常见错误与技巧。一个最敏感和难检测的bug就是内存泄漏-没有把前边分配的内存成功释放，一个小的内存泄漏可能不需要太注意，但是程序泄漏大块内存，或者渐增式的泄漏内存可能引起的现象是：先是性能低下，再就是引起复杂的内存耗尽错误。data: &lt;  &gt; cd cd cd cd cd cd cd cd cd cd cd cd cd cd cd cd     object dump complete._crtsetdbgflag( _crtdbg_alloc_mem_df | _crtdbg_leak_check_df);</blockquote></description>
<dc:creator></dc:creator>
</item>
<item>
<title>常见内存泄露及解决方案-选自ood启示录</title>
<link>http://www.360doc.com/content/081028/21/7635_1840905.html</link>
<category>
</category>
<pubDate>2008-10-28 21:52:43</pubDate>
<description>
<blockquote>// 删除原有资源空间;  // 必须牢记;  delete m_color;  m_color = new char[strlen(rhs.m_color) + 1];  strcpy(m_color, rhs.m_color); }// 释放前一个值的资源; delete temp.m_color; temp.m_color = new char[strlen(this-&gt;m_color) + strlen(rhs.m_color) + 1]; sprintf(temp.m_color, &quot;%s%s&quot;, this-&gt;m_color, rhs.m_color); return temp;}case 8: 没用将基类的析构函数定义成虚函数;解决方法: 将基类的析构函数定义为虚函数;</blockquote></description>
<dc:creator></dc:creator>
</item>
<item>
<title>郎咸平语不惊人死不休 称房价跌至成本价都不是底_财经_凤凰网</title>
<link>http://www.360doc.com/content/081023/21/7635_1814266.html</link>
<category>
</category>
<pubDate>2008-10-23 21:05:39</pubDate>
<description>
<blockquote>如预期郎咸平的到来为烟台城市精英深度解读当前经济热点、展望环渤海经济圈发展趋势、探析楼市、股市、民营经济发展迷局，并就民营企业高层及投资人士最关心的&quot;最新金融政策对楼市、股市会产生的影响；郎教授称&quot;楼市、股市将持续萧条&quot;。美国的问题来自于金融危机，中国的问题来源于制造业危机，也就是说，这两年，由于制造业所面临的投资营商环境不断恶化，使得大量的制造业资金，进入了楼市、股市，造成了楼市和股市的泡沫。</blockquote></description>
<dc:creator></dc:creator>
</item>
<item>
<title>在VC6中使用MSXML 4.0 DOM处理XML文档（1） - MSXML - 技术应用...</title>
<link>http://www.360doc.com/content/081016/20/7635_1775328.html</link>
<category>
</category>
<pubDate>2008-10-16 20:24:18</pubDate>
<description>
<blockquote>3.安装MSXML4.0SDK　　早期的MSXML版本，特别是MSXML2.5和MSXML3.0，借助于xmlinst.exe工具，可以以替换模式进行安装。这种模式有助于保护那些使用msxml.dll、msxml2.dll，或者msxml3.dll的应用程序，使其不受干扰，仍可照常使用。从MicrosoftXMLDownloadCenter下载回安装程序，安装程序将在你的机器上安装三个文件：msxml4.dll、msxml4a.dll和msxml4r.dll，并对msxml4.dll进行注册。另详细的资料请参考MSXML4.0SDK文档。</blockquote></description>
<dc:creator></dc:creator>
</item>
<item>
<title>VC  动态链接库(DLL)编程深入浅出</title>
<link>http://www.360doc.com/content/081012/20/7635_1751699.html</link>
<category>
</category>
<pubDate>2008-10-12 20:10:47</pubDate>
<description>
<blockquote>(3)VC动态链接库的分类　　Visual C++支持三种DLL，它们分别是Non-MFC DLL（非MFC动态库）、MFC Regular DLL（MFC规则DLL）、MFC Extension DLL（MFC扩展DLL）。最后，应用工程使用完DLL后，在函数main中通过Win32 Api函数FreeLibrary释放了已经加载的DLL模块。在4.1节的例子中我们看到了由&amp;quot;LoadLibrary-GetProcAddress-FreeLibrary&amp;quot;系统Api提供的三位一体&amp;quot;DLL加载-DLL函数地址获取-DLL释放&amp;quot;方式，这种调用方式称为DLL的动态调用。</blockquote></description>
<dc:creator></dc:creator>
</item>
<item>
<title>请问DLL 的 DEF文件有什么作用？</title>
<link>http://www.360doc.com/content/081012/18/7635_1751453.html</link>
<category>
</category>
<pubDate>2008-10-12 18:46:06</pubDate>
<description>
<blockquote>DEF的作用一是指定导出函数的序号，以使调用都可以用序号调用DLL的导出函数，否则，只能按名称调用，这样慢，而且只能使用显式引用（即在程序中用LoadLibrary,GetProcAddress等），而不能用隐式引用（象VC中使用LIB文件引用）。我的意见是导出函数以extern  &amp;quot;C&amp;quot;  WINAPI开始，后面是函数返回值、参数等原型，不要导出C++类的成员函数，即便是静态成员函数，这样可以保证各种语言的应用都能使用。</blockquote></description>
<dc:creator></dc:creator>
</item>
</channel></rss>