E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
lexical
SAX高级技术之解析实体
例如,考虑从XML文档创建一个简单实体: Text placed in the public domain by Moby
Lexical
Tools,1992.
柳哥
·
2015-01-15 01:00
java与XML
02
Lexical
analysis
#词法和语法是采用 BNF语法符号来描述的。 ############################################### #BNF是以一种以形式化符号来描述给定语言的语法。 现在几乎每一位新的编程语言的作者都使用BNF来定义编程语言的语法规则 #BNF符号意义: # 1. 双引号内的字符,表示这些字符本身。 如 "world" , "compare". # 2
世界岛
·
2015-01-13 20:00
自己实现的Boost库中的
lexical
_cast任意类型转换
知道了C++的I/O设施之后,这些就变的很简单了。如果你经常使用,时间长了就会有感觉。这个事情是多此一举吗?就当是练习吧,知道原理之后,你会觉得用起来更舒畅,更喜欢C++了。#include #include #include #include #include #include usingnamespacestd; template Resultlexical_cast(Parapara) {
ClamReason
·
2014-11-17 09:00
c++ boost 中的 各种 转换
:static_pointer_cast、const_pointer_cast、dynamic_pointer_cast,返回的结果是shared_ptr,并能保证这些指针的引用计数正确boost::
lexical
_casteg
wangxvfeng101
·
2014-11-11 21:00
C++
智能指针
boost
clojure 词法变量
lexical
和动态变量dynamic
clojure中变量可以分为词法变量(
lexical
)和动态变量(dynamic),有点类似于其它语言中的局部变量和全局变量。引入变量:1。函数定义:形参列表定义了在函数被调用的时候保存实参的变量。
yuhan20081021
·
2014-09-04 14:00
boost学习之
lexical
_cast
今天学习一下boost,果然比较强大,今天就用到了转换的库,
lexical
_cast,真的是太方便啦上代码:#include #include #include usingnamespacestd;
cau_eric
·
2014-07-01 11:00
C++
Visual
Studio
2010
Boost的万能转换器-->
lexical
_cast
boost::
lexical
_cast为数值之间的转换(conversion)提供了一揽子方案,比如:将一个字符串"123"转换成整数123,代码如下: string s = "123";
liulong1567
·
2014-06-25 14:00
Compiler Principle(1)Lex and Yacc
Some ConceptAbstract Syntax Tree ASTLex -
Lexical
AnalyzerYacc - Yet Another Compiler Compiler2.
sillycat
·
2014-06-06 23:00
compiler
从零开始学compiler--3--1--
Lexical
Analysis
词法分析词法分析的目的是把源代码文件分解成一个个的词法元组。常见的词法元组分类有:tokenclassesIdentifier、whitespace、number、keyword标示符、空格、数字、关键字openparn"("closeparn")"semicolon";"operator“+、-、*、/、==”e.g.这些符号自己就是一组Identifier:variablenames,clas
forever_former
·
2014-04-06 21:43
编译原理
cobertura-maven-plugin中文相关错误解决
cobertura-maven-plugin生成插件的覆盖率报告时,有可能会出现如下的错误: net.sourceforge.cobertura.javancss.parser.TokenMgrError:
Lexical
tylanbin
·
2014-01-25 12:00
plugin
(翻译)Java SE 8 Lambda 特性与基本原理(下)
6,词法域(
Lexical
Scoping) 确定内部类中变量名字(包括this)的意义要比在顶级类中困难的多,并且很容易出错。
captain-cao
·
2013-12-20 06:00
java
java
jdk
lambda
8
8
se
boost之
lexical
_cast简易说明
boost之
lexical
_cast一、
lexical
_cast的作用
lexical
_cast使用统一的接口实现字符串与目标类型之间的转换。
fanwenbo
·
2013-11-07 23:00
3.5 The
Lexical
-Analyzer Generator Lex
3.5TheLexical-AnalyzerGeneratorLexInthissection,weintroduceatoolcalledLex,orinamorerecentimplementationFlex,thatallowsonetospecifyalexicalanalyzerbyspecifyingregularexpressionstodescribepatternsfortok
cuishengli
·
2013-09-28 11:00
boost 数据类型转换的方法
#include inta=
lexical
_cast("123"); stringstrA=
lexical
_cast(a);当然也可以转换其它的类型.例如long double等http://blog.sina.com.cn
wangxvfeng101
·
2013-09-10 10:00
boost之
lexical
_cast库,数值/字符串转换及其异常处理
示例代码: 1.
lexical
_cast转换。 2.如果不能转换抛出bad_
lexical
_cast异常。
kanguolaikanguolaik
·
2013-07-18 17:00
boost::
lexical
_cast 的使用
1,字符串到数值类型的转换2,数值到字符串的转换3,异常处理情况4,boost::
lexical
_cast的原型:template Targetlexical_cast(Sourcearg);
lexical
_cast
wangeen
·
2013-04-17 09:00
lexical
_cast组件
1//强制类型转换 2#include"stdafx.h" 3#include 4#include 5#include 6 7usingnamespacestd; 8 9int_tmain(intargc,_TCHAR*argv[]) 10{ 11stringstr_int="520"; 12stringstr_double="520.2314"; 13constdoubl
lovemu
·
2013-01-28 14:00
[Boost基础]字符串和文本处理——
lexical
_cast词汇转换
Lexical
_cast、format(类似”printf”格式的操作)和C标准库函数功能类似,它们关注字
ouyangshima
·
2013-01-17 20:00
在文字和數字間轉換:boost::
lexical
_cast
转自:http://kheresy.wordpress.com/2010/12/01/
lexical
_cast/這一篇是來大概介紹一下 BoostC++Libraries 裡的
lexical
_cast這個函式庫
yasi_xi
·
2012-12-06 18:00
boost
lexical
_cast format
Boost中包括五个字符串与文本处理领域的程序库: 【1】两个与c标准库函数功能类似的
lexical
_cast和format,它们关注与字符串的表示,可以将数值转化为字符串,对输出做精确的格式化。
mmzsyx
·
2012-11-16 17:00
编程:Boost组件
lexical
_cast
原:http://hi.baidu.com/_%E2d_%B7%B3_%DE%B2%C2%D2/blog/item/9032ffc231bbcc1f0ff4772b.html 这次我们先挑个简单实用的Boost组件,看看Boost能给我们带来怎样的便利。3.1字符串→数值在CSDN论坛上经常看到询问如何在字符串类型和数值类型间进行转换的问题,也看到了许多不同的答案。下面先讨论一下从字符串类型到数值
hzraymond
·
2012-11-08 15:00
使用boost库实现不同数据类型之间的自由转换
boost库中的
lexical
_cast(source_tpye_val);#include #include usingnamespacestd; usingnamespaceboost; intmain
ClamReason
·
2012-10-31 18:00
在文字和數字間轉換:boost::
lexical
_cast
這一篇是來大概介紹一下 BoostC++Libraries 裡的
lexical
_cast這個函式庫(官網);他的功能相當簡單,主要就是提供了一個template函式的介面,來做到任一型別和文字間的轉換。
wuwuwuwuwuwuwuwu
·
2012-09-28 15:00
String
Stream
IO
performance
float
Constructor
boost 常用
类型转换#include stringaa=boost::
lexical
_cast(3);doubleb=
lexical
_cast("123.12");***** int32_ta=0; int8_tb
dodo_check
·
2012-09-27 16:00
String
JMeter使用问题汇总
1.Token Parsing Error:
Lexical
error at line 3, column 37.
cdtdx
·
2012-08-26 23:00
JMeter
JMeter使用问题汇总
1.Token Parsing Error:
Lexical
error at line 3, column 37.
cdtdx
·
2012-08-26 23:00
JMeter
【Boost】基于boost::
lexical
_cast的to_string函数
#include #include #include"boost/
lexical
_cast.hpp" templatestd::stringto_string(constT&arg){ try{ returnboost
huang_xw
·
2012-08-26 11:00
String
include
boost c++ lib on linux(2) -
lexical
_cast字符串数值转换
在c语言中字符串数字之间有很多转换函数,这些函数名称和使用时很难记住,在boost c++中,提供了一个统一的字符转和数值之间的相互转换的工具
lexical
_cast,来统一操作,方便程序员快速实现字符串和数字之间的转换
Garfier
·
2012-08-19 15:00
C++
linux
exception
String
语言
makefile
The way to fix error:
Lexical
or Preprocessor Issue 'libxml/xmlversion.h' file not found
WhenusingRXMLElement.h,Ialwaysgetbelowerrorwhencompilingthecode: LexicalorPreprocessorIssue'libxml/xmlversion.h'filenotfound.Whenchecking,Icanalwaysseexmlversion.hexistinginlibxmlfolder.Afterinvestiga
lwf97055143
·
2012-08-02 21:00
File
header
search
Build
frameworks
preprocessor
spring+velocity+tomcat7的问题
,利用原来的框架搭建,发现了诸多问题: 框架: spring + velocity + maven + tomcat7 由于问题太多,赶时间,没能好好整理,大概说下问题和解决方法: Q1:
Lexical
terryzz
·
2012-08-02 11:00
velocity
Boost的转换函数numeric_cast和
lexical
_cast
Boost的转换函数(二)boost::numeric_cast在c++中,我们经常需要把不同类型的数字互相转换,如将一个数字在long和short之间转换。但由于各数字的精度不同,当一个数字从"大"类型到"小"类型就可能导致转换失败,如下所示:long n1=99999999;short n2= static_cast(n1);对于如上转换,n2得到的是一个负数,显然这个不是我们所期望的,并且这
freeboy1015
·
2012-07-26 10:00
exception
String
Stream
文档
扩展
程序开发
flex 学习笔记 Parent,ParentDocument,ParentApplication
它们是Parent,ParentDocument,ParentApplication.1.Parent:指包含此组件的父级容器对象(DisplayObjectContainer),这里的包含是词义上(
Lexical
李思威
·
2012-07-23 20:10
flex
flex 学习笔记 Parent,ParentDocument,ParentApplication
它们是Parent,ParentDocument,ParentApplication.1.Parent:指包含此组件的父级容器对象(DisplayObjectContainer),这里的包含是词义上(
Lexical
李思威
·
2012-07-23 20:10
Flex
lisp中的变量
支持两种类型变量:词法变量(
lexical
)和动态变量(dynamic),分别对应于其他语言中的局部变量和全局变量,只能说是大致相似,并不是所有的语言都有lisp中的闭包的词法作用域变量与其他语言一样,
ryuali2010
·
2012-07-19 23:00
java
c
list
语言
lambda
lisp
perl变量使用范围非常经典详解
/bin/perl$global="i'mtheglobalversion";showme('atstart');
lexical
();localized();showme('atend');subshowme
网络蛤蟆
·
2012-07-13 22:36
变量
局部变量
perl
全局变量
imx515 开发板Android源代码编译过程[开发日记]
Android requires the following system packages: flex: This
lexical
analyzer generator is used to read
wangangie2
·
2012-07-01 00:00
android
imx515 开发板Android源代码编译过程[开发日记]
Android requires the following system packages: flex: This
lexical
analyzer generator is used to read
hgfghwq27
·
2012-07-01 00:00
android
PHP的词法解析器:re2c
出处:http://www.phppan.com/2011/09/php-
lexical
-re2c/作者:胖胖re2c是一个扫描器制作工具,可以创建非常快速灵活的扫描器。
newjueqi
·
2012-06-25 14:00
c
PHP
正则表达式
header
compiler
编译器
jflex-1.4.3
1. a
lexical
specification file for JFlex consists of three parts divided by a single line starting with
tianyalinfeng
·
2012-05-23 13:00
Flex
Nested Functions in C
既然GCC支持了closure,那么
lexical
scoping自然也支持了,同时在C中label也是可以在nested functions中自由跳转的
bookjovi
·
2012-04-19 15:00
c
closure
CHAPTER 2
Lexical
Structure
2.1 Character Set Javascript采用Unicode编码 2.1.1 Case Sensitivity Javascript是大小写敏感的语言 2.1.2 Whitespace, Line Breaks, and Format Control Characters Javascript忽略空格和换行 2.1.3 Unicode Esc
mistbow
·
2012-04-02 13:00
struct
实战准标准库Boost —— (2)测试Boost配置的Hello World程序
2.源码#include #include usingnamespacestd; intmain() { usingboost::
lexical
_cast; inta=
lexical
_cast("
晨曦之光
·
2012-03-20 18:00
闭包的概念 [翻译]
: wiki: closure 译文: 闭包的概念 译者: Breaker <breaker.zy_AT_gmail> 译文 closure 概念 closure 亦称词法闭包 (
lexical
lovnet
·
2012-03-17 16:00
闭包
深入了解lisp(clojure)-变量
://blog.csdn.net/larrylgq/article/details/7395261作者:吕桂强邮箱:
[email protected]
中变量可以分为词法变量(
lexical
larrylgq
·
2012-02-29 20:00
action
语言
lambda
lisp
clojure
binding
实战准标准库Boost —— (2)测试Boost配置的Hello World程序
2.源码#include #include usingnamespacestd; intmain() { usingboost::
lexical
_cast; inta=
lexical
_cast("
Poechant
·
2012-01-08 01:00
c
String
测试
iostream
Boost::
lexical
_cast
Boost提供了
lexical
_cast,可以方便地在string和int,double,float,long之间相互转化。
orzlzro
·
2011-12-23 22:00
String
Class
float
Perl中的闭包(closure)
This is a notion out of the Lisp world that says if you define an anonymous function in a particular
lexical
cloudtech
·
2011-12-17 03:00
closure
Qt字符串转换和处理----山路十八弯
#include #include"testqstring.h" #include"boost/
lexical
_cast.hpp" #include #include #include #include
wyz365889
·
2011-12-06 16:00
String
qt
byte
PHP的词法解析器:re2c
http://www.phppan.com/2011/09/php-
lexical
-re2c/PHP的词法解析器:re2c胖胖PHP2011/09/261条留言147viewsre2c是一个扫描器制作工具
·
2011-10-08 16:00
PHP
ICTCLAS2011_JNI接口之学习笔记-整体介绍
最近因为实验需要中文分词工具,所以就学习了下中科院的分词工具ICTCLAS(Institute of Computing Technology,Chinese
Lexical
Analysis System
andyliuxs
·
2011-09-29 20:00
学习笔记
上一页
1
2
3
4
5
6
7
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他