SOA is an integration solution. SOA is message oriented first. The Key character of SOA is loosely coupled. SOA is enriched by creating composite apps.
摘要:(define (f n) (if (< n 3) n (f-iter 0 1 2 n))) (define (f-iter a b c count) (if (= count 2) c (f-iter b c (+ c (* 2 b) (* 3 a)) (- count 1))))(f-iter a b ...
阅读全文