代码搜索:notation
找到约 2,214 项符合「notation」的源代码
代码结果 2,214
www.eeworm.com/read/166568/10016111
java notationlister.java
import javax.xml.parsers.*;
import org.w3c.dom.*;
import org.xml.sax.SAXException;
import java.io.IOException;
public class NotationLister {
// No recursion for a change. We don't need to walk th
www.eeworm.com/read/166568/10016233
java unparsedcache.java
import org.xml.sax.*;
import java.util.Hashtable;
public class UnparsedCache implements DTDHandler {
private Hashtable notations = new Hashtable();
private Hashtable entities = new Hashtable();
www.eeworm.com/read/357685/10203061
rfc-1215
RFC-1215 DEFINITIONS ::= BEGIN
IMPORTS
ObjectName
FROM RFC1155-SMI;
TRAP-TYPE MACRO ::=
BEGIN
TYPE NOTATION ::= "ENTERPRISE" value
(enterprise
www.eeworm.com/read/357685/10203067
snmpv2-smi
SNMPv2-SMI DEFINITIONS ::= BEGIN
-- the path to the root
org OBJECT IDENTIFIER ::= { iso 3 } -- "iso" = 1
dod OBJECT IDENTIFIER ::= { org 6 }
internet OBJECT IDENTIFIE
www.eeworm.com/read/357685/10203172
snmpv2-conf
SNMPv2-CONF DEFINITIONS ::= BEGIN
IMPORTS ObjectName, NotificationName, ObjectSyntax
FROM SNMPv2-SMI;
-- definitions for conformance groups
OBJECT-GRO
www.eeworm.com/read/278099/10570625
c eng.c
/* +++Date last modified: 05-Jul-1997 */
/* ENG.C - Format floating point in engineering notation */
/* Released to public domain by author, David Harmon, Jan. 1994 */
#include
www.eeworm.com/read/349902/10786250
m subsref.m
function [rvalue] = subsref(hFigure, S)
% BVQXfigure::subsref - retrieve property via struct notation
%
% FORMAT: propvalue = FigureObject.PropertyName
%
% Also, the subsref construct can
www.eeworm.com/read/418205/10958879
txt 01.7 变量的命名约定.txt
1.7 变量的命名约定
由于Windows程序一般很长,编程人员在一段时间后自己都有可能忘记所定义的变量的含义。为了帮助大家记忆与区分变量,微软公司创建了Windows的命名约定,称之为匈牙利表示法(Hungarian <mark>notation</mark>)。匈牙利表示法提供了一组前缀字符,如表1.1所示,这些前缀也可以组合起来使用。
表1.1 匈牙利表示法
前 缀
含 义
a ...
www.eeworm.com/read/469319/6973163
postfix testcase2.postfix
Input an infix expression and output its postfix notation:
/************************/
Total:2 errors.
Unit 4:词法错误,非法字符.
Unit 5:语法错误,左边缺少运算符.
/************************/
End of program.
www.eeworm.com/read/469319/6973164
postfix testcase3.postfix
Input an infix expression and output its postfix notation:
/************************/
Total:1 errors.
Unit 9:语法错误,缺少右运算量.
/************************/
End of program.