Swift操作符可以自行定义, 只需要加上简单的标志符即可.
@infix 中置运算. 如+,-,*,/运算
@prefix 前置运算. 如-
@postfix 后置运算. a++, a--
@assignment 赋值运算. +=, -=, --a, ++a
//
// main.swift
// SwiftBasic
//
// Created by yao_yu on 14-...
分类:
移动开发 时间:
2014-07-27 23:39:19
阅读次数:
388
javax.mail mail 1.5.0 system ${basedir}/src/main/webapp/WEB-INF/lib/javax.mail.jar
分类:
其他好文 时间:
2014-07-27 23:21:59
阅读次数:
186
删点并查集,就是用一个新的点标代替之前的点标即可。。 y一下就可以了
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define mod 1000000007
#define ll int
#...
分类:
其他好文 时间:
2014-07-26 02:01:46
阅读次数:
225
一、访问问题Eclipse使用SDK Manager更新时总是出现问题Failed to fetch URL https://dl-ssl.google.com/android/repository/repository-6.xml, reason: Connection to https://dl...
分类:
移动开发 时间:
2014-07-26 01:15:06
阅读次数:
278
Openssl是一个开源的用以实现SSL协议的产品,它主要包括了三个部分:密码算法库、应用程序、SSL协议库。Openssl实现了SSL协议所需要的大多数算法。 下面我将单介绍使用Openssl进行文件的对称加密操作。 一、Opens...
分类:
其他好文 时间:
2014-07-25 00:03:34
阅读次数:
352
一、添加SMTP服务器在需要发送自动报警的服务器上修改如下文件,增加如下两行#vim/etc/mail.rc
setfrom=doteyplay@126.comsmtp=smtp.126.com
setsmtp-auth-user=doteyplaysmtp-auth-password=***smtp-auth=login当然,这里的SMTP服务器也可以使用别的,比如QQ的,但是QQ只能发..
分类:
数据库 时间:
2014-07-24 23:45:14
阅读次数:
454
selectDISTINCTvend_idFROMproducts;DISTINCT去重复的值,必须放在列名前面selectprod_namefromproductsLIMIT5;限制结果LIMITLIMIT4OFFSET3:从行3开始取4行,==LIMIT3,4selectacct_key.acct_namefromeyou_mail.acct_key;直接取值数据库的表内容selectprod_namefromproductsOR..
分类:
数据库 时间:
2014-07-24 23:45:04
阅读次数:
293
最近Naigos修改contact,需要手动发送测试邮件Centos(其他版本可参照manmail,manmailx获得更多信息)创建邮件内容文件mail.txt[root@localhost~]#touchmail.txt[root@localhost~]#vimail.txt编辑好以后内容后发送邮件mailx-s‘testasimplemail‘aaaaaa@yahoo.cn<mail.txtaaaa..
分类:
移动开发 时间:
2014-07-24 17:54:03
阅读次数:
280
下面用到的邮件账号和密码都不是真实的,需要测试就换成自己的邮件账号。需要引用:using System.Net.Mail;using System.Text;using System.Net;程序代码: MailMessage myMail = new MailMessage(); /...
分类:
其他好文 时间:
2014-07-24 10:03:53
阅读次数:
187