E D R , A S I H C RSS

Civa Project

ฃผš” ž๋ฐ” API๋ฅผ C++ ฝ”๋“œ๋กœ ๋ฐ”๊ฟ”๋ณด๊ธฐ.

civa.CivaDef

~cpp 
#ifndef CIVA_CIVADEF_INCLUDED
#define CIVA_CIVADEF_INCLUDED
#include <boost/smart_ptr.hpp>

namespace civa { namespace io {
using boost::shared_ptr;

class Serializable;
typedef shared_ptr<Serializable> Serializable_Handle;

}} // namespace civa::io

namespace civa { namespace lang {
using boost::shared_ptr;

template<typename ElementType> class Array;
//#define Array_Handle(ElementType) boost::shared_ptr< civa::lang::Array<ElementType> >
//template<typename ElementType> typedef shared_ptr< Array<ElementType> > Array_Handle;
typedef shared_ptr< Array<char> > charArray_Handle;

class CharSequence;
typedef shared_ptr<CharSequence> CharSequence_Handle;

class Comparable;
typedef shared_ptr<Comparable> Comparable_Handle;

class Object;
typedef shared_ptr<Object> Object_Handle;

class String;
typedef shared_ptr<String> String_Handle;

}} // namespace civa::lang
#endif // CIVA_CIVADEF_INCLUDED

๋ถ„„ & žก๋‹ด

  • ด๋ž˜Šค๋“คด „œ๋กœ ๋งž๋ฌผ๋ ค„œ ๊ฒฐ๊ตญ ๋”ฐ๋กœ ๋นผ๊ฒŒ ๋˜—ˆ๊ตฐ.
  • ŒŒ๋ผ๋ฉ”„ฐ๋ผดˆ typedef € ปดŒŒผด •ˆ๋˜๋„ค.. œผœผ Array “ธ๋• ๊ธธ๊ฒŒ ๋‹ค จค˜•ผ•˜๋‚˜..
  • ๋งคฌ๋กœ๋Š” “ฐ๊ธฐ ‹ซ€๋ฐ.

civa.io.Serializable

~cpp 
#ifndef CIVA_IO_SERIALIZABLE_INCLUDED
#define CIVA_IO_SERIALIZABLE_INCLUDED
#include "../lang/Object.h"

namespace civa { namespace io {

class Serializable {
};

}} // namespace civa::io
#endif // CIVA_IO_SERIALIZABLE_INCLUDED

๋ถ„„ & žก๋‹ด

  • ธŠค„Šค ƒ„ ๋ชป•˜๊ฒŒ ๋ง‰•„ค˜•ผ •˜๋‚˜.

civa.lang.Array

~cpp 
#ifndef CIVA_LANG_ARRAY_INCLUDED
#define CIVA_LANG_ARRAY_INCLUDED
#include "Object.h"

namespace civa { namespace lang {

template<typename ElementType>
class Array : public Object {
  private:
	ElementType* values;
	int length;

  public:
	Array(int length) throw() : length(length) {
		// ๋ฐ”šด๋“œ ฒดฌ.
		values = new ElementType[length];
	}

	Array(ElementType newValues[]) {
		// ๋ฐฐ—ด˜ ฌ๊ธฐ๊ฐ€ ด๊ฒŒ ๋งž๋‚˜...
		length = sizeof(newValues) / sizeof(ElementType);
		values = new ElementType[length];
		for (index = 0; index < length; index++) {
			values[index] = newValuse[index];
		}
	}

	ElementType operator[] (int index) throw() {
		// ๋ฐ”šด๋“œ ฒดฌ.
		return values[index];
	}

	const ElementType operator[] (int index) const throw() {
		// ๋ฐ”šด๋“œ ฒดฌ.
		return values[index];
	}

	size_t getLength() {
		return length;
	}

  public:
	~Array() {
		delete[] values;
	}
};


}} // namespace civa::lang
#endif // CIVA_LANG_ARRAY_INCLUDED

๋ถ„„ & žก๋‹ด

  • ๋ฐ”šด๋“œ ฒดฌ•ด„œ ต…‰…˜ ๋˜ง€๋Š”๊•ด•ผ•˜๊ณ ,
  • ๋ฐฐ—ด˜ ฌ๊ธฐ •Œ•„๋‚ด๋Š” ๋ฒ• กฐ‚ฌ.

civa.lang.CharSequence

~cpp 
#ifndef CIVA_LANG_CHARSEQUENCE_INCLUDED
#define CIVA_LANG_CHARSEQUENCET_INCLUDED
#include "Object.h"

namespace civa { namespace lang {
class CharSequence {
  public:
	virtual int length() = NULL;
	virtual char charAt(int index) = NULL;
	virtual CharSequence_Handle subSequence(int start, int end) = NULL;
	virtual String_Handle toString() = NULL;
};


}} // namespace civa::lang
#endif // CIVA_LANG_CHARSEQUENCET_INCLUDED

๋ถ„„ & žก๋‹ด

  • ถ”ƒด๋ž˜Šค๋‹ˆ ธŠค„Šค๋Š” ƒ„ •ˆ๋˜๊ฒ ๊ตฐ.

civa.lang.Comparable

~cpp 
#ifndef CIVA_LANG_COMPARABLE_INCLUDED
#define CIVA_LANG_COMPARABLE_INCLUDED
#include "Object.h"

namespace civa { namespace lang {
class Comparable {
  public:
	virtual int compareTo(Object o) = NULL;
};


}} // namespace civa::lang
#endif // CIVA_LANG_COMPARABLE_INCLUDED

๋ถ„„ & žก๋‹ด


civa.lang.Object

~cpp 
#ifndef CIVA_LANG_OBJECT_INCLUDED
#define CIVA_LANG_OBJECT_INCLUDED
#include "../CivaDef.h"

namespace civa { namespace lang {

class Object {
  public:
	void getClass() {/*ฐจ›„ ถ”๊ฐ€ Class getClass()*/}

	virtual int getHashCode() {
		return reinterpret_cast<int>(this);
	}

	virtual bool equals(Object_Handle obj) {
		return (this == obj.get());
	}

	virtual String_Handle toString() {
		/*ฐจ›„ ถ”๊ฐ€*/
		//return getClass().getName() + "@" + Integer.toHexString(hashCode());
	}

	void notify() {/*ฐจ›„ ถ”๊ฐ€*/}

	void notifyAll() {/*ฐจ›„ ถ”๊ฐ€*/}

	void wait(long timeout) throw() {/*ฐจ›„ ถ”๊ฐ€*/} //InterruptedException

	void wait(long timeout, int nanos) throw() { //InterruptedException
		if (timeout < 0) {
			throw ;//new IllegalArgumentException("timeout value is negative");
		}

		if (nanos < 0 || nanos > 999999) {
			throw ;//new IllegalArgumentException("nanosecond timeout value out of range");
		}

		if (nanos >= 500000 || (nanos != 0 && timeout == 0)) {
			timeout++;
		}

		wait(timeout);
	}

	void wait() throw() { //InterruptedException
		wait(0);
	}

  protected:
	virtual Object_Handle clone() throw() {
		throw ; //CloneNotSupportedException
		//œผŒ. ด๋ก —ด๋ธ” ธ„Ž˜ดŠค ๊ตฌ˜„—ฌ๋ถ€๋ฅผ –ด๋–ป๊ฒŒ Œ๋‹จ•˜ง€ -_-;;
		return Object_Handle(new Object(*this));
	}

	virtual void finalize() throw() {/*•„๋ฌด๊ฒƒ๋„ •ˆ•จ*/ } //Throwable

  public:
	virtual ~Object() {}

};


}} // namespace civa::lang
#endif // CIVA_LANG_OBJECT_INCLUDED

๋ถ„„ & žก๋‹ด

  • ผ๋‹จ ‹œž‘... ๋ฉ€‹ฐ“ฐ๋ ˆ๋“œ ๊ด€๋ จ ๋ฉ”†Œ๋“œ™€ ด๋ž˜Šค๋Š” ๋ชป•  ๋“ฏ. ๊ณผ—ฐ –ด๋””๊นŒง€ • ๋ผ๋‚˜...
  • wait ๋ฉ”†Œ๋“œ˜  € ‚ฌ๊ธฐ ๋‚˜๋…ธ„ปจ„ ๋ณด๋ผ. -_- ™œ ๋งŒ๋“ ๊ง€, ๋ฏธ๋ž˜˜ ๋Œ€๋น„ธ๊ฐ€...
  • C++ —„œ throw ƒ€ž…„ ๊ณ  •‹œ‚ฌ ˆ˜ žˆ๋‚˜...
  • ๋ฉ”†Œ๋“œ ˜ค๋ฒ„๋ผด๋”ฉ ๊ธˆง€ ‹œ‚ฌ ˆ˜ žˆ๋‚˜..

civa.lang.String

~cpp 
#ifndef CIVA_LANG_STRING_INCLUDED
#define CIVA_LANG_STRING_INCLUDED
#include "Object.h"
#include "../io/Serializable.h"
#include "Comparable.h"
#include "CharSequence.h"
#include "Array.h"

namespace civa { namespace lang {

class String
: public Object, civa::io::Serializable, Comparable, CharSequence {
  private:
	/** The value is used for character storage. */
	charArray_Handle value;

	/** The offset is the first index of the storage that is used. */
	int offset;

	/** The count is the number of characters in the String. */
	int count;

	/** Cache the hash code for the string */
	int hash;

  public:
	String() : hash(0) {
		value = charArray_Handle(new Array<char>(0));
	}
};

}} // namespace civa::lang
#endif // CIVA_LANG_STRING_INCLUDED

๋ถ„„ & žก๋‹ด


civa.lang.

๋ถ„„ & žก๋‹ด

WIPI —„œ ATOC ๋ฅผ ง€๊ธˆ„ค๊ฐ€ •˜๋Š”๊ฒƒฒ˜๋Ÿผ ˆ˜–‰•œ๋‹ค๋”๊ตฌ๋งŒ --;; .. --neocoin

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2021-02-07 05:22:53
Processing time 0.0117 sec