// 打印系统中所有字体的类型名字
    NSArray *familyNames = [UIFont familyNames];
    for(NSString *familyName in familyNames ){
        printf("Family: %s \n", [familyName UTF8String]);
        NSArray *fontNames = [UIFont fontNamesForFamilyName:familyName];
        for(NSString *fontName in fontNames) {
            printf("\tFont: %s \n", [fontName UTF8String]);
   
        }
    }

//字符串简单处理(改变颜色字体大小)

方式一:直接处理字符串

 // 1.改变字符串里面某一范围的字体大小以及颜色

NSMutableAttributedString *attributed = [[NSMutableAttributedString alloc] initWithString:str];

[attributed addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"Zapfino" size:20] range:NSMakeRange(0, str.length)];

    [attributed addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(5, 2)];
    label.attributedText = attributed;
    
    // 2.改变字符串的字体颜色==直接对字符串Font和textColor的操作
    NSDictionary *attrDict = @{NSFontAttributeName:[UIFont fontWithName: @"Zapfino" size: 15],
                                NSForegroundColorAttributeName:[UIColor blueColor]};
    
    NSMutableAttributedString *attributed2 = [[NSMutableAttributedString alloc] initWithString:str attributes:attrDict];
    label.attributedText = attributed2;
    
 
方式二:分段处理(把字符串根据自己的需求进行分段分片处理)

  NSString *originStr = @"家里人今天的上课了国家的路口时根据法律的空格键";
    //第一段
    NSDictionary *attrDict1 = @{NSFontAttributeName:[UIFont fontWithName: @"Zapfino" size: 15],
                                 NSForegroundColorAttributeName:[UIColor blueColor] };
   NSAttributedString *attrStr1 = [[NSAttributedString alloc] initWithString: [originStr substringWithRange: NSMakeRange(0, 4)] attributes: attrDict1];
    
   //第二段
    NSDictionary *attrDict2 = @{NSFontAttributeName:[UIFont fontWithName: @"Zapfino" size: 15],
                                 NSForegroundColorAttributeName:[UIColor redColor] };
    NSAttributedString *attrStr2 = [[NSAttributedString alloc] initWithString: [originStr substringWithRange: NSMakeRange(4, 3)] attributes: attrDict2];
    
    //第三段
    NSDictionary *attrDict3 = @{NSFontAttributeName:[UIFont fontWithName: @"Zapfino" size: 15],
                                 NSForegroundColorAttributeName:[UIColor blackColor] };
    NSAttributedString *attrStr3 = [[NSAttributedString alloc] initWithString:[originStr substringWithRange:NSMakeRange(7, originStr.length - 4 - 3)] attributes: attrDict3];

   //合并

    NSMutableAttributedString *attributedStr03 = [[NSMutableAttributedString alloc] initWithAttributedString: attrStr1];
    [attributedStr03 appendAttributedString: attrStr2];
    [attributedStr03 appendAttributedString: attrStr3];
    
    label.attributedText = attributedStr03;
   

注意:
//    NSForegroundColorAttributeName设置的颜色与UILabel的textColor属性设置的颜色在地位上是相等的,谁最后赋值,最终显示的就是谁的颜色。
   

属性操作

  一.// NSForegroundColorAttributeName 设置字体颜色,取值为 UIColor,默认为黑色
//    NSDictionary *attrDict1 = @{ NSForegroundColorAttributeName: [UIColor redColor] };
//    NSDictionary *attrDict2 = @{ NSForegroundColorAttributeName: [UIColor blueColor] };
//    NSDictionary *attrDict3 = @{ NSForegroundColorAttributeName: [UIColor orangeColor] };
  
//    label.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict1];
//    label2.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict2];
//    label3.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict3];
   
  二.//NSBackgroundColorAttributeName 设置字体所在区域背景的颜色,取值为UIColor,默认值为nil
//    NSDictionary *attrDict4 = @{ NSBackgroundColorAttributeName: [UIColor orangeColor] };
//    NSDictionary *attrDict5 = @{ NSBackgroundColorAttributeName: [UIColor redColor] };
//    NSDictionary *attrDict6 = @{ NSBackgroundColorAttributeName: [UIColor cyanColor] };

//    label1.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict4];
//    label2.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict5];
//    label3.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict6];
   
注意:仔细观察会发现个问题,我并没有关闭 NSForegroundColorAttributeName 属性,但是在运行结果中,所有字体的颜色都变成了默认色——黑色,这说明 NSForegroundColorAttributeName 和NSBackgroundColorAttributeName 的低位是相等的,跟前面介绍的 textColor 一样,哪个属性最后一次赋值,就会冲掉前面的效果,若是我们把属性代码顺序交换一下
  
   //NSBackgroundColorAttributeName 设置字体所在区域背景的颜色,取值为UIColor,默认值为nil
  
//    NSDictionary *attrDict4 = @{ NSBackgroundColorAttributeName: [UIColor orangeColor] };
//    NSDictionary *attrDict5 = @{ NSBackgroundColorAttributeName: [UIColor redColor] };
//    NSDictionary *attrDict6 = @{ NSBackgroundColorAttributeName: [UIColor cyanColor] };

//    label1.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict4];
//    label2.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict5];
//    label3.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict6];

  //NSForegroundColorAttributeName 设置字体颜色,取值为 UIColor,默认为黑色

//    NSDictionary *attrDict1 = @{ NSForegroundColorAttributeName: [UIColor redColor] };
//    NSDictionary *attrDict2 = @{ NSForegroundColorAttributeName: [UIColor blueColor] };
//    NSDictionary *attrDict3 = @{ NSForegroundColorAttributeName: [UIColor orangeColor] };

//    label1.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict1];
//    label2.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict2];
//    label3.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict3];

//    但是textColor属性可以与 NSBackgroundColorAttributeName 属性叠加
   
//    label1.textColor = [UIColor greenColor];
//    label2.textColor = [UIColor yellowColor];
//    label3.textColor = [UIColor blueColor];
 

   //NSForegroundColorAttributeName 设置字体颜色,取值为 UIColor,默认为黑色
//    
//    NSDictionary *attrDict1 = @{ NSForegroundColorAttributeName: [UIColor redColor] };
//    NSDictionary *attrDict2 = @{ NSForegroundColorAttributeName: [UIColor blueColor] };
//    NSDictionary *attrDict3 = @{ NSForegroundColorAttributeName: [UIColor orangeColor] };
//    
//    label1.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict1];
//    label2.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict2];
//    label3.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict3];
//    
//    
  //NSBackgroundColorAttributeName 设置字体所在区域背景的颜色,取值为UIColor,默认值为nil
//    
//    NSDictionary *attrDict4 = @{ NSBackgroundColorAttributeName: [UIColor orangeColor] };
//    NSDictionary *attrDict5 = @{ NSBackgroundColorAttributeName: [UIColor redColor] };
//    NSDictionary *attrDict6 = @{ NSBackgroundColorAttributeName: [UIColor cyanColor] };
//    
//    label1.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict4];
//    label2.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict5];
//    label3.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict6];
  
虽然 textColor 在 NSFontAttributeName 之前赋值,但是由于 NSFontAttributeName 的属性效果被NSBackgroundColorAttributeName 属性冲掉了,所以最终显示了 textColor 的颜色。
  
  3. NSLigatureAttributeName
//NSLigatureAttributeName 设置连体属性,取值为NSNumber 对象(整数),0 表示没有连体字符,1 表示使用默认的连体字符,
                          2 表示使用所有连体符号,默认值为 1(iOS 不支持 2)
//    NSString *ligatureStr = @"flush";
//    NSDictionary *attrDict1 = @{ NSLigatureAttributeName: [NSNumber numberWithInt: 0],
                                NSFontAttributeName: [UIFont fontWithName: @"futura" size: 30] };
//    label1.attributedText = [[NSAttributedString alloc] initWithString: ligatureStr attributes: attrDict1];

//    NSDictionary *attrDict2 = @{ NSLigatureAttributeName: @(1),
                             NSFontAttributeName: [UIFont fontWithName: @"futura" size: 30]
                            };
//    label2.attributedText = [[NSAttributedString alloc] initWithString: ligatureStr attributes: attrDict2];
 由于要展示连体字符,所以将前面使用的带有中文的字符串换成 flush 
//    NSLigatureAttributeName的取值为NSNumber对象,所以不能直接将一个整数值赋给它,创建NSNumber 对象的方法有很多,或者可以简写成 @(int)

//    注意观察字母f和l之间的变化。 
//    感觉连写就是一个艺术字功能,当字符f和l组合使用组合符号(所谓的字形(glyph))绘制时,看起来确实更加美观。但是并非所有的字符之间都有组合符号,事实上,只有某些字体中得某些字符的组合(如字符f和l,字符f和i等)才具有美观的组合符号。

   
  4. NSKernAttributeName
//NSKernAttributeName 设定字符间距,取值为 NSNumber 对象(整数),正值间距加宽,负值间距变窄 
//    NSDictionary *attrDict1 = @{ NSKernAttributeName: @(-3),
                              NSFontAttributeName: [UIFont systemFontOfSize: 20]
                              };
//    label1.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict1];
//    NSDictionary *attrDict2 = @{ NSKernAttributeName: @(0),
                         NSFontAttributeName: [UIFont systemFontOfSize: 20]
                           };
//    label2.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict2];
//    NSDictionary *attrDict3 = @{ NSKernAttributeName: @(10),
                        NSFontAttributeName: [UIFont systemFontOfSize: 20]
                        };
//    label3.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict3];
 
  5. NSStrikethroughStyleAttributeName
//NSStrikethroughStyleAttributeName 设置删除线,取值为 NSNumber 对象(整数),枚举常量 NSUnderlineStyle中的值
// NSUnderlineStyleNone   不设置删除线
// NSUnderlineStyleSingle 设置删除线为细单实线
// NSUnderlineStyleThick  设置删除线为粗单实线
// NSUnderlineStyleDouble 设置删除线为细双实线
 

//    NSDictionary *attrDict1 = @{ NSStrikethroughStyleAttributeName: @(NSUnderlineStyleSingle),
                             NSFontAttributeName: [UIFont systemFontOfSize:20] };
//    label1.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict1];
//    NSDictionary *attrDict2 = @{ NSStrikethroughStyleAttributeName: @(NSUnderlineStyleThick),
                           NSFontAttributeName: [UIFont systemFontOfSize:20] };
//    label2.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict2];
//    NSDictionary *attrDict3 = @{ NSStrikethroughStyleAttributeName: @(NSUnderlineStyleDouble),
                        NSFontAttributeName: [UIFont systemFontOfSize:20] };
//    label3.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict3];
注意:
虽然使用了枚举常量,但是枚举常量的本质仍为整数,所以同样必须先转化为 NSNumber 才能使用
删除线和下划线使用相同的枚举常量作为其属性值 
目前iOS中只有上面列出的4中效果,虽然我们能够在头文件中发现其他更多的取值,但是使用后没有任何效果 
可以看出,中文和英文删除线的位置有所不同
另外,删除线属性取值除了上面的4种外,其实还可以取其他整数值,有兴趣的可以自行试验,取值为 0 - 7时,效果为单实线,随着值得增加,单实线逐渐变粗,取值为 9 - 15时,效果为双实线,取值越大,双实线越粗。

//    NSDictionary *attrDict1 = @{ NSStrikethroughStyleAttributeName: @(1),
                            NSFontAttributeName: [UIFont systemFontOfSize:20] };
//    label1.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict1];
//    NSDictionary *attrDict2 = @{ NSStrikethroughStyleAttributeName: @(3),
                       NSFontAttributeName: [UIFont systemFontOfSize:20] };
//    label2.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict2];
//    NSDictionary *attrDict3 = @{ NSStrikethroughStyleAttributeName: @(7),
                         NSFontAttributeName: [UIFont systemFontOfSize:20] };
//    _label3.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict3];


   6. NSStrikethroughColorAttributeName
//NSStrikethroughColorAttributeName 设置删除线颜色,取值为 UIColor 对象,默认值为黑色
//    NSDictionary *attrDict1 = @{ NSStrikethroughColorAttributeName: [UIColor blueColor],
                          NSStrikethroughStyleAttributeName: @(1),
                          NSFontAttributeName: [UIFont systemFontOfSize:20] };
//    label1.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict1];
//    NSDictionary *attrDict2 = @{ NSStrikethroughColorAttributeName: [UIColor orangeColor],
                           NSStrikethroughStyleAttributeName: @(3),
                          NSFontAttributeName: [UIFont systemFontOfSize:20] };
//    label2.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict2];
//    NSDictionary *attrDict3 = @{ NSStrikethroughColorAttributeName: [UIColor greenColor],
                           NSStrikethroughStyleAttributeName: @(7),
                          NSFontAttributeName: [UIFont systemFontOfSize:20] };
//    label3.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict3];

  
  7. NSUnderlineStyleAttributeName
下划线除了线条位置和删除线不同外,其他的都可以完全参照删除线设置。

//NSUnderlineStyleAttributeName 设置下划线,取值为 NSNumber 对象(整数),枚举常量NSUnderlineStyle中的值,与删除线类似
//    NSDictionary *attrDict1 = @{ NSUnderlineStyleAttributeName: @(NSUnderlineStyleSingle),
                               NSFontAttributeName: [UIFont systemFontOfSize:20] };
//    label.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict1];
//    NSDictionary *attrDict2 = @{ NSUnderlineStyleAttributeName: @(NSUnderlineStyleThick),
                            NSFontAttributeName: [UIFont systemFontOfSize:20] };
//    label.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict2];
//    NSDictionary *attrDict3 = @{ NSUnderlineStyleAttributeName: @(NSUnderlineStyleDouble),
                            NSFontAttributeName: [UIFont systemFontOfSize:20] };
//    label.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict3];

 
  8. NSUnderlineColorAttributeName
可以完全参照下划线颜色设置
//NSUnderlineColorAttributeName 设置下划线颜色,取值为 UIColor 对象,默认值为黑色
//    NSDictionary *attrDict1 = @{ NSUnderlineColorAttributeName: [UIColor blueColor],
                       NSUnderlineStyleAttributeName: @(NSUnderlineStyleSingle),
                       NSFontAttributeName: [UIFont systemFontOfSize:20] };
//    label1.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict1];
//    NSDictionary *attrDict2 = @{ NSUnderlineColorAttributeName: [UIColor orangeColor],
                           NSUnderlineStyleAttributeName: @(NSUnderlineStyleThick),
                           NSFontAttributeName: [UIFont systemFontOfSize:20] };
//    label2.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict2];
//    NSDictionary *attrDict3 = @{ NSUnderlineColorAttributeName: [UIColor greenColor],
                        NSUnderlineStyleAttributeName: @(NSUnderlineStyleDouble),
                          NSFontAttributeName: [UIFont systemFontOfSize:20] };
//    label3.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict3];


  9. NSStrokeWidthAttributeName
//    //NSStrokeWidthAttributeName 设置笔画宽度,取值为 NSNumber 对象(整数),负值填充效果,正值中空效果
//    NSDictionary *attrDict1 = @{ NSStrokeWidthAttributeName: @(-3),
                            NSFontAttributeName: [UIFont systemFontOfSize:30] };
//    label1.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict1];
//    NSDictionary *attrDict2 = @{ NSStrokeWidthAttributeName: @(0),
                           NSFontAttributeName: [UIFont systemFontOfSize:30] };
//    label2.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict2];
//    NSDictionary *attrDict3 = @{ NSStrokeWidthAttributeName: @(3),
                           NSFontAttributeName: [UIFont systemFontOfSize:30] };
//    label3.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict3];

 
  10. NSStrokeColorAttributeName
//NSStrokeColorAttributeName 填充部分颜色,不是字体颜色,取值为 UIColor 对象
//    NSDictionary *attrDict1 = @{ NSStrokeWidthAttributeName: @(-3),
                         NSStrokeColorAttributeName: [UIColor orangeColor],
                        NSFontAttributeName: [UIFont systemFontOfSize:30] };
//    _label01.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict1];
//    NSDictionary *attrDict2 = @{ NSStrokeWidthAttributeName: @(0),
                          NSStrokeColorAttributeName: [UIColor blueColor],
                          NSFontAttributeName: [UIFont systemFontOfSize:30] };
//    _label02.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict2];
//    NSDictionary *attrDict3 = @{ NSStrokeWidthAttributeName: @(3),
                           NSStrokeColorAttributeName: [UIColor greenColor],
                          NSFontAttributeName: [UIFont systemFontOfSize:30] };
//    _label03.attributedText = [[NSAttributedString alloc] initWithString: originStr attributes: attrDict3];

其他属性简单说明如下:
// NSFontAttributeName                设置字体属性,默认值:字体:Helvetica(Neue) 字号:12
// NSForegroundColorAttributeNam      设置字体颜色,取值为 UIColor对象,默认值为黑色
// NSBackgroundColorAttributeName     设置字体所在区域背景颜色,取值为 UIColor对象,默认值为nil, 透明色
// NSLigatureAttributeName            设置连体属性,取值为NSNumber 对象(整数),0 表示没有连体字符,1 表示使用默认的连体字符
// NSKernAttributeName                设定字符间距,取值为 NSNumber 对象(整数),正值间距加宽,负值间距变窄
// NSStrikethroughStyleAttributeName  设置删除线,取值为 NSNumber 对象(整数)
// NSStrikethroughColorAttributeName  设置删除线颜色,取值为 UIColor 对象,默认值为黑色
// NSUnderlineStyleAttributeName      设置下划线,取值为 NSNumber 对象(整数),枚举常量NSUnderlineStyle中的值,与删除线类似
// NSUnderlineColorAttributeName      设置下划线颜色,取值为 UIColor 对象,默认值为黑色
// NSStrokeWidthAttributeName         设置笔画宽度,取值为 NSNumber 对象(整数),负值填充效果,正值中空效果
// NSStrokeColorAttributeName         填充部分颜色,不是字体颜色,取值为 UIColor 对象
// NSShadowAttributeName              设置阴影属性,取值为 NSShadow 对象
// NSTextEffectAttributeName          设置文本特殊效果,取值为 NSString 对象,目前只有图版印刷效果可用:
// NSBaselineOffsetAttributeName      设置基线偏移值,取值为 NSNumber (float),正值上偏,负值下偏
// NSObliquenessAttributeName         设置字形倾斜度,取值为 NSNumber (float),正值右倾,负值左倾
// NSExpansionAttributeName           设置文本横向拉伸属性,取值为 NSNumber (float),正值横向拉伸文本,负值横向压缩文本
// NSWritingDirectionAttributeName    设置文字书写方向,从左向右书写或者从右向左书写
// NSVerticalGlyphFormAttributeName   设置文字排版方向,取值为 NSNumber 对象(整数),0 表示横排文本,1 表示竖排文本
// NSLinkAttributeName                设置链接属性,点击后调用浏览器打开指定URL地址
// NSAttachmentAttributeName          设置文本附件,取值为NSTextAttachment对象,常用于文字图片混排
// NSParagraphStyleAttributeName      设置文本段落排版格式,取值为 NSParagraphStyle 对象

iosNSMutableAttributedString 简单操作的更多相关文章

  1. x01.MagicCube: 简单操作

    看最强大脑,发现魔方还是比较好玩的,便买了一个,对照七步还原法,居然也能成功还原. 为什么不写一个魔方程序呢?在网上找了找,略作修改,进行简单操作,还是不错的,其操作代码如下: protected o ...

  2. js简单操作Cookie

    贴一段js简单操作Cookie的代码: //获取指定名称的cookie的值 function getCookie(objName) { var arrStr = document.cookie.spl ...

  3. GitHub学习心得之 简单操作

    作者:枫雪庭 出处:http://www.cnblogs.com/FengXueTing-px/ 欢迎转载 前言 本文对Github的基本操作进行了总结, 主要基于以下文章: http://gitre ...

  4. Linq对XML的简单操作

    前两章介绍了关于Linq创建.解析SOAP格式的XML,在实际运用中,可能会对xml进行一些其它的操作,比如基础的增删该查,而操作对象首先需要获取对象,针对于DOM操作来说,Linq确实方便了不少,如 ...

  5. Linux 中 Vi 编辑器的简单操作

    Linux 中 Vi 编辑器的简单操作 Vi 编辑器一共有3种模式:命名模式(默认),尾行模式,编辑模式.3种模式彼此需要切换. 一.进入 Vi 编辑器的的命令 vi  filename //打开或新 ...

  6. python(pymysql)之mysql简单操作

    一.mysql简单介绍 说到数据库,我们大多想到的是关系型数据库,比如mysql.oracle.sqlserver等等,这些数据库软件在windows上安装都非常的方便,在Linux上如果要安装数据库 ...

  7. ZooKeeper系列3:ZooKeeper命令、命令行工具及简单操作

    问题导读1.ZooKeeper包含哪些常用命令?2.通过什么命令可以列出服务器 watch 的详细信息?3.ZooKeeper包含哪些操作?4.ZooKeeper如何创建zookeeper? 常用命令 ...

  8. ORACLE的安装与网页版创建表空间的简单操作以及PLsql的简单操作

    1.oracle的安装: 安装简单易学,在这里不做解释.下载看装包后耐心等待,注意安装目录不要有中文字符,尽量按照指定目录进行安装.安装完成后会占用有大约5g的内存. 如果要卸载oracle,需要用其 ...

  9. C#反射技术的简单操作(读取和设置类的属性)

    public class A { public int Property1 { get; set; } } static void Main(){ A aa = new A(); Type type ...

随机推荐

  1. no method declared with objective-c selector error

    down voteaccepted Swift 2.2 / Xcode 7.3 has a new way to use selector:Selector("funcName") ...

  2. RF环境搭建

    官网:http://robotframework.org/ 序号 安装包名 安装方法 下载地址 备注 1 python exe文件,直接双击安装 https://www.python.org/down ...

  3. Date时间对象方法

  4. HDU猜数字

    G - 猜数字 Time Limit:10000MS       Memory Limit:32768KB       64bit IO Format:%I64d & %I64u Descri ...

  5. UVALive 6910 Cutting Tree(并查集应用)

    总体来说,这个题给的时间比较长,样例也是比较弱的,别的方法也能做出来. 我第一次使用的是不合并路径的并查集,几乎是一种暴力,花了600多MS,感觉还是不太好的,发现AC的人很多都在300MS之内的过得 ...

  6. Arrar.prototype.map()的用法

    ---恢复内容开始--- map() 方法返回一个由原数组中的每个元素调用一个指定方法后的返回值组成的新数组. array.map(callback[, thisArg]) 注:[]在语法中[]内的内 ...

  7. 分布式版本控制系统Git-----9.Git 使用的小技巧

    1. git push -u orgin master[后面push的时候可简写] 第一次push的时候-u后面加上<本地分支名><远程分支>,第二次push的时候就只需要写g ...

  8. Maven-项目构建技术(工具)

    Maven-项目构建技术(工具) 主要的内容目标:如何创建项目.如何导入jar.如何进行其他配置.如何管理生命周期 今天的主要安排: maven的概述(为什么要用?是什么) 快速入门(配置.名词解释. ...

  9. 湖南多校对抗赛(2015.05.03)Problem A: Twenty-four point

    给四个数 问能不能算出24点...我的方法比较烂...920ms 差点TLE.应该有更好的方法. #include<stdio.h> #include<string.h> #i ...

  10. java 导出excel(复杂案例)

    import java.io.FileOutputStream;import java.io.IOException; import org.apache.poi.hssf.usermodel.HSS ...