摘要: 1、请你自我介绍一下你自己回答提示:一般人回答这个问题过于平常,只说姓名、年龄、爱好、工作经验,这些在简历上都有,其实,企业最希望知道的是求职者能否胜任工作,包括:最强的技能、最深入研究的知识领域、个性中最积极的部分、做过的最成功的事,主要的成就等,这些都可以和学习无关,也可以和学习有关,但要突出积极的个性和做事的能力,说得合情合理企业才会相信。企业很重视一个人的礼貌,求职者要尊重考官,在回答每个... 阅读全文
posted @ 2010-09-05 10:03 jrvin 阅读(383) 评论(0) 推荐(0) 编辑
摘要: Primitive array arguments (including structs) are represented by their corresponding Java types. For example:NOTE: if the parameter is to be used by the native function outside thescope of the functi... 阅读全文
posted @ 2010-09-01 22:21 jrvin 阅读(390) 评论(0) 推荐(0) 编辑
摘要: public class LabeledFor { public static void main(String[] args) { int i = 0; outer: // Can’t have statements here for (; i<10;i++) { // infinite loop inner: // Can’t have statements here for (; i < 10; i++) { out.print("i = " + i); if (i == 2) { out.println("continue"); co 阅读全文
posted @ 2010-08-26 15:43 jrvin 阅读(294) 评论(0) 推荐(0) 编辑
摘要: If you shift a char, byte, or short, it will be promoted to int before the shift takes place, and the result will be an int. Only the five low-order bits of the right-hand side will be used. This prevents you from shifting more than the number of bits in an int. If you’re operating on a long, you’ll 阅读全文
posted @ 2010-08-26 14:27 jrvin 阅读(483) 评论(0) 推荐(0) 编辑
摘要: 放弃iphone开发,回到学校,图书馆、实验室。gis 标准完成后,走java之路。java基础->jsp、servlet、js、xml等web技术->struts,hibernate,spring框架学习->数据库->算法、设计模式->linux。 阅读全文
posted @ 2010-08-19 11:18 jrvin 阅读(161) 评论(0) 推荐(0) 编辑
摘要: When it comes to the iPhone, phone function comes first. Incoming calls, SMS, and USSD (unstructured supplementary service data, including account balance notifications for prepaid plans) messages will supersede your application. You can program around this by watching for core telephony events and 阅读全文
posted @ 2010-08-16 16:30 jrvin 阅读(932) 评论(0) 推荐(0) 编辑
摘要: App store 增加新应用的步骤。1. 访问iTunesConnect,地址为https://itunesconnect.apple.com,用有上传权限的账户登录。2. 选择“Manage Your Applications”3. 此时可以看到目前已有的应用,此时点击左上角的“Add New Application” 4. 进入下图界面,此时输入下述内容App Name:应用名称,一旦命名确认后,曾经用过的名字在其他应用中不能再用,所以此处需慎重,可以优先考虑用标准不含附加内容的名字。SKU Number:应用的独立标示,和其他的不重复即可Bundle ID:和开发中使用的Bundle 阅读全文
posted @ 2010-08-16 13:58 jrvin 阅读(4002) 评论(0) 推荐(0) 编辑
摘要: info.list用源码方式打开,编辑。例子如下。根据你的需求,添加。<key>UIRequiredDeviceCapabilities</key> <dict> <key>front-facing-camera</key> <true/> <key>sms</key> <true/> </dict>API 详细说明。UIRequiredDeviceCapabilitiesUIRequiredDeviceCapabilities (Array or Dictionary - 阅读全文
posted @ 2010-08-16 11:25 jrvin 阅读(2098) 评论(0) 推荐(1) 编辑
摘要: 如果你使用网上的很多方法仍然没有效果的话。请试试下面这个方法。我的电脑上装过两个版本的office,所以也出现了上面的错误。如果你也安装过两个版本的office,那么你在com页中添加Microsoft Word 11.0 Object Library时,不一定要用11.如果还有其他版本,不妨一试。 我安装过03,和07,卸载的时候可能出现了问题,没有完全卸载。现在用的时07,所以我选11,一直有问题,我试用了一下12后,发现ok了。 阅读全文
posted @ 2010-08-15 09:48 jrvin 阅读(900) 评论(1) 推荐(0) 编辑
摘要: A simple method to debug your iPhone application code is to use NSLog() statements at strategic points. I often find myself printing out the response from server calls using NSLog. Even after the iPhone client development is done, these log statements can be useful to debug server issues. But you ob 阅读全文
posted @ 2010-08-15 09:34 jrvin 阅读(272) 评论(0) 推荐(0) 编辑