sre_repeat.java

来自「tinyos最新版」· Java 代码 · 共 30 行

JAVA
30
字号
/* * Copyright 2000 Finn Bock * * This program contains material copyrighted by: * Copyright (c) 1997-2000 by Secret Labs AB.  All rights reserved. * * This version of the SRE library can be redistributed under CNRI's * Python 1.6 license.  For any other use, please contact Secret Labs * AB (info@pythonware.com). * * Portions of this engine have been developed in cooperation with * CNRI.  Hewlett-Packard provided funding for 1.6 integration and * other compatibility work. */package org.python.modules.sre;/* stack elements */public class SRE_REPEAT {    int count;    int pidx;    SRE_REPEAT prev;    SRE_REPEAT(SRE_REPEAT prev) {        this.prev = prev;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?