Common Lisp Object System

learn more… | top users | synonyms

2
votes
1answer
92 views

What's the equivalent of constructors in CLOS?

How would you express the following Java code in Lisp? class Foo { private String s; public Foo(String s) { this.s = s; } } class Bar extends Foo { public Bar(int i) { ...
3
votes
1answer
64 views

Printing an object as a unique string, possibly using its address

I need a way to create GraphViz node names from CLOS objects in such a way that each object gets its own node, and if I alter my objects and re-create the GraphViz visualization, I get the same node ...
2
votes
1answer
74 views

Can't call method when first argument is nil?

(defmethod carpet-append ((this carpet) (rect image-rectangle)) (destructuring-bind (rect-width . rect-height) (rectangle-size rect) (destructuring-bind (bitmap-width . bitmap-height) ...
0
votes
3answers
116 views

Common Lisp: Controlling macro expansion time

I was working with common lisp, and found myself typing up slot definitions of the following form quite a lot: (name :initarg :name :accessor name) And so I thought to concoct a macro to speed up ...
8
votes
3answers
222 views

Hierarchy of standard-object and standard-class in Common Lisp

I'm studying Common Lisp (with Lispworks) and I'm trying to get into class system right now. There is a class called standard-object and it is defined as The class standard-object is an instance ...
3
votes
1answer
95 views

Transient classes in CLOS

Is there any standard way to create a transient class in CLOS; that is, a class which can be GC'd after all its instances are dead? In SBCL, I tried (setf test (defclass #:foo () ())), i.e. using an ...
2
votes
2answers
158 views

CLOS: How to make a slot have an enforced type of vector of symbols?

I'm trying to create a class that can store a vector of symbols in a slot in SBCL. I cannot figure out how to set it up. My best guess thus far has been (defclass Individual () ...
2
votes
2answers
288 views

memory usage by objects in common lisp

Is there a way to find out how much memory is used by an instance of a class or basic data types in general? I have a toy webframework in cl that creates and manages web pages with instances of ...
2
votes
1answer
164 views

How to export slots and accessors from Lisp classes?

This is my class's package: (in-package :cl-user) (defpackage foo (:use :cl) (:export :bar)) (in-package :foo) (defclass bar () (baz)) I can create an instance of bar in package cl-user. ...
4
votes
2answers
500 views

Is there a generic method for cloning CLOS objects?

I'm looking for a way to clone CLOS objects in a shallow manner, so the created object would be of the same type with the same values in each slot, but a new instance. The closest thing I found is a ...
1
vote
1answer
61 views

In CLOS method definitions, can a specializer be a list of classes and not a single class?

While it does not make much sense in the general case as it should be done via superclasses, I want to allow "nil" for a particular parameter and avoid having to define a separate method. I'm trying ...
1
vote
1answer
88 views

clisp, CLOS: retyping an object, later

Suppose I have a class animal, with subclasses horse, duck, and rabbit. Suppose I use make-instance to make several objects of class animal. Much later, I discover, for each of these objects, that ...
1
vote
1answer
411 views

Common Lisp Unbound Variable

Is it possible to use an uninitialized variable as a function argument? For an assignment, I have to use the CLOS to write a semantic network system, and my professor included a test function to test ...
3
votes
2answers
161 views

How to specialize generic function for subclasses of given class

How can i specialize a generic function to take symbols designating subclasses of given class. For example: (defclass a () ()) (defclass b (a) ()) (defclass c (b) ()) (defclass d () ()) (defgeneric ...
2
votes
1answer
240 views

Common Lisp: How to check if a slot is bound? (CLOS)

Say we have a slot without :initform (defclass foo () ((x :reader x :initarg x))) How can I check if slot x of an instance of foo is bound? There is a way to do this with MOP, which I find very ...
1
vote
1answer
102 views

How to find the package of a class in lisp?

Suppose I want to find out in which package a class is defined, e.g. say (defclass x ()()) is defined in p1. One way could be to get the package via (symbol-package 'x). the problem with this solution ...
2
votes
3answers
445 views

Optional Arguments in defgeneric?

I'm writing some methods to emit HTML for various elements. Each method has the same output, but doesn't necessarily need the same input. The method for echoing a game-board needs to take a player as ...
4
votes
2answers
124 views

specifying a slot value as a key when removing duplicates

The following code does what I want: 1 (defclass some-class () 2 ((some-slot 3 :initarg :somearg 4 :initform (error ":somearg not specified")))) 5 (defparameter *alpha* ...
2
votes
2answers
194 views

GNU clisp: suppressing warning message about no-applicable-method

This code works as I want, except for the warning message. In GNU Common Lisp, how do I suppress that message without suppressing other possible warning messages? 1 (defgeneric zang (x y) 2 ...
3
votes
2answers
152 views

Order of (:before/:after) method invocation in CLOS?

I need some help understanding the order of execution for the following code. I create an instance of pie, using the following: (cook (make-instance 'pie)) I know lisp executes functions from most ...
-2
votes
1answer
174 views

Does CLOS is a weakness in Common Lisp? [closed]

What I want to mean is if CLOS is a bad practice to the Lisp functional programming way?
6
votes
3answers
315 views

Lisp: How to override default string representation for CLOS class?

In Common Lisp, how can I override the default string representation of a CLOS class so that calls to format or princ will print something intelligible, even when objects of that class are embedded ...
3
votes
1answer
123 views

Is it possible to dynamically add one more super class in existing class

In Common-Lisp CLOS Is it possible to dynamically add one more super class in existing class. Update: I wanted to defined defassoc kind of macro that will associated some behaviour with ...
5
votes
1answer
286 views

Using Common Lisp CLOS objects as keys in a hashtable?

I'd like to use Common Lisp CLOS objects as keys in a hashtable. I thought it would be as simple as this: (defclass my-class () ((a :accessor a :initarg a))) (defun my-class= (my-instance-1 ...
1
vote
2answers
150 views

Strange class precedence list in sbcl

In sbcl, *(sb-mop:class-precedence-list (find-class 'cons)) ==>(#<BUILT-IN-CLASS CONS> #<BUILT-IN-CLASS LIST> #<BUILT-IN-CLASS SEQUENCE> #<BUILT-IN-CLASS T>) Isn't it ...
2
votes
2answers
229 views

Lisp: How can i get hold of the created instance inside initialize-instance :around method

I want to create an (:around qualified) specializer of initialize-instance for a class X that will first call-next-method and then will call make-instance of another class, supplying it with the ...
4
votes
2answers
309 views

lisp: How to create temporary method specialization within a scope

In Common lisp: Redefine an existing function within a scope? the OP asked for something similar. But I want to create a method specializer, not a function. Essentially suppose that a method is ...
10
votes
1answer
536 views

Advantages of CLOS over other class-based OO systems

I've come across claims that Common Lisp Object System (CLOS) is superior to traditional (class-based) Object-Oriented systems. Wikipedia entry for CLOS mentions differences between the two approaches ...
4
votes
2answers
959 views

Comparing Common Lisp with Gambit w.r.t their library access and object systems

I'm pretty intrigued by Gambit Scheme, in particular by its wide range of supported platforms, and its ability to put C code right in your Scheme source when needed. That said, it is a Scheme, which ...
1
vote
2answers
226 views

Problem with access of slots in Lisp (CLOS)

I have a Node class that has an 'element' slot which contains a list with numbers and one letter, for example: '(1 2 3 b 4 5 6) (defclass node () ((element :reader get-element :writer ...
1
vote
3answers
486 views

Initializing slots based on other slot values in Common Lisp Object System class definitions

In my class definition, I want to initialize one slot based on the value of another slot. Here is the sort of thing I would like to do: (defclass my-class () ((slot-1 :accessor my-class-slot-1 ...
3
votes
2answers
322 views

What POOP frameworks exist for Lisp and Scheme

What all nice POOP (Prototype-based Object-oriented Programming) Frameworks exists in Lisp and Scheme I know one * Sheeple But I did not find any other.
8
votes
1answer
901 views

Make clos objects printable in lisp

If you want to make CLOS objects in common lisp printable (print readably), how do you go about doing this without using anything but print and read.
6
votes
1answer
223 views

Test if a class is a subclass of another class in common lisp

How do I see if one CLOS class is a subclass of another CLOS class?
5
votes
1answer
216 views

How to write (simple) macro?

I need to write a macro (with-hooks (monster method who what) &body body) for a game I'm writing. Monster is a CLOS object, method and who are strings and what is a function (#' notation). The ...
2
votes
2answers
322 views

Create a polynomial object from a number using change-class

I have written a polynomial class along the lines described in SICP 2.5.3 (except using defclass). I would like to be able to seamlessly add and multiply polynomials and regular numbers but I can't ...
1
vote
2answers
228 views

Change an editable-text value in Allegro CL

I'm trying to change the value of an Editable-Text control in Allegro CL (version 8.0.1) by clicking a Default-Button. I've read about (setf value) but haven't found any examples. The function I ...
4
votes
1answer
388 views

cross-package defgeneric/defmethod in Common Lisp?

What is the right way to define a generic in package A and to provide a method for this generic in package B in CLOS? Thank you in advance! Example: (defpackage :common (:use :cl)) (in-package ...
5
votes
2answers
601 views

When is an initform used?

I'm forming a class for some work on molecular dynamics as follows: (defclass %atom (particle) ((name :initarg :name :initform (error "Every atom in the system must have a name!")) (mass ...
2
votes
2answers
260 views

lisp file pointers in classes

I'm running up against a problem in understanding the CLOS way of handling file access within a class. In c++ I would be able to do this: class Foo { Foo (string filename); // opens the file ...
6
votes
5answers
512 views

Trying to learn: Object Reorientation, and generic functions in LISP!

im reading Practical common Lisp as a result of another question. I just read chapter 16 and 17 where you can find how LISP manages objects. But after a couple of years of thinking how Java manages ...
4
votes
3answers
256 views

CLOS like object model for PHP

I have returned to php development from Moose and I really miss CLOS like object model for php. Is there some kind of syntaxtic sugar which would allow me to write less code in php when dealing with ...