代码搜索:immutable
找到约 373 项符合「immutable」的源代码
代码结果 373
www.eeworm.com/read/460914/7237715
pas clientu.pas
unit ClientU;
// Immutable: no Set methods
interface
type
TClient = class (TObject)
private
FAccNo: integer;
FCName: string;
function GetAccNo: string;
www.eeworm.com/read/460914/7237693
pas clientu.pas
unit ClientU;
// Immutable: no Set methods
interface
type
TClient = class (TObject)
private
FAccNo: integer;
FCName: string;
public
constructor Create (ACName, AnAcc
www.eeworm.com/read/127767/14335940
txt e070. constructing a string.txt
If you are constructing a string with several appends, it may be more efficient to construct it using a StringBuffer and then convert it to an immutable String object.
StringBuffer buf = new Str
www.eeworm.com/read/417741/10977157
java safehtmlpage.java
package ir.webutils;
/**
* SafeHTMLPage is an immutable representation of information about a
* web page that includes information about whether or not this page
* can be indexed. This class is i
www.eeworm.com/read/460914/7237681
pas clientu.pas
unit ClientU;
// Immutable: read-only properties
interface
type
TClient = class (TObject)
private
FAccNo: integer;
FCName: string;
function GetAccNo: string;
public
www.eeworm.com/read/451308/7467592
java safehtmlpage.java
package ir.webutils;
/**
* SafeHTMLPage is an immutable representation of information about a
* web page that includes information about whether or not this page
* can be indexed. This class is i
www.eeworm.com/read/151645/5680808
java attribute.java
package org.kxml;
/** Attribute class, used by both kDom and the pullparser. The
instances of this class are immutable. This restriction allows
manipulation aware element implementatio
www.eeworm.com/read/150432/5692416
java attribute.java
package org.kxml;
/** Attribute class, used by both kDom and the pullparser. The
instances of this class are immutable. This restriction allows
manipulation aware element implementatio
www.eeworm.com/read/456693/1604714
h intobject.h
/* Portions Copyright (c) 2005 Nokia Corporation */
/* Integer object interface */
/*
PyIntObject represents a (long) integer. This is an immutable object;
an integer cannot change its value