東方算程譚

Oriental Code Talk ── επιστημηが与太をこく、弾幕とは無縁のシロモノ。

目次

Blog 利用状況

ニュース

著作とお薦めの品々は

著作とお薦めの品々は
東方熱帯林へ。

あわせて読みたい

わんくま

  1. 東京勉強会#2
    C++/CLI カクテル・レシピ
  2. 東京勉強会#3
    template vs. generics
  3. 大阪勉強会#6
    C++むかしばなし
  4. 東京勉強会#7
    C++むかしばなし
  5. 東京勉強会#8
    STL/CLRによるGeneric Programming
  6. TechEd 2007 @YOKOHAMA
    C++・C++/CLI・C# 適材適所
  7. 東京勉強会#14
    Making of BOF
  8. 東京勉強会#15
    状態遷移
  9. 名古屋勉強会#2
    WinUnit - お気楽お手軽UnitTest

CodeZine

  1. Cで実現する「ぷちオブジェクト指向」
  2. CUnitによるテスト駆動開発
  3. SQLiteで組み込みDB体験(2007年版)
  4. C++/CLIによるCライブラリの.NET化
  5. C# 1.1からC# 3.0まで~言語仕様の進化
  6. BoostでC++0xのライブラリ「TR1」を先取りしよう (1)
  7. BoostでC++0xのライブラリ「TR1」を先取りしよう (2)
  8. BoostでC++0xのライブラリ「TR1」を先取りしよう (3)
  9. BoostでC++0xのライブラリ「TR1」を先取りしよう (4)
  10. BoostでC++0xのライブラリ「TR1」を先取りしよう (5)
  11. C/C++に対応した、もうひとつのUnitTestFramework ─ WinUnit
  12. SQLiteで"おこづかいちょう"
  13. STL/CLRツアーガイド
  14. マージ・ソート : 巨大データのソート法
  15. ヒープソートのアルゴリズム
  16. C++0xの新機能「ラムダ式」を次期Visual Studioでいち早く試す
  17. .NETでマンデルブロ集合を描く
  18. .NETでマンデルブロ集合を描く(後日談)
  19. C++/CLI : とある文字列の相互変換(コンバージョン)
  20. インテルTBBによる選択ソートの高速化
  21. インテルTBB3.0 によるパイプライン処理
  22. Visual C++ 2010に追加されたSTLアルゴリズム
  23. Visual C++ 2010に追加されたSTLコンテナ「forward_list」
  24. shared_ptrによるObserverパターンの実装
  25. .NETでマンデルブロ集合を描く(番外編) ── OpenCLで超並列コンピューティング
  26. StateパターンでCSVを読む
  27. 状態遷移表からStateパターンを自動生成する
  28. 「ソートも、サーチも、あるんだよ」~標準C++ライブラリにみるアルゴリズムの面白さ
  29. インテルTBBの同期メカニズム
  30. なぜsetを使っちゃいけないの?
  31. WPFアプリケーションで腕試し ~C++でもWPFアプリを
  32. C++11 : スレッド・ライブラリひとめぐり
  33. Google製のC++ Unit Test Framework「Google Test」を使ってみる
  34. メールでデータベースを更新するココロミ
  35. Visitorパターンで遊んでみたよ
  36. Collection 2題:「WPFにバインドできる辞書」と「重複を許す検索set」
  37. Visual C++ 2012:stateless-lambdaとSQLiteのぷち拡張
  38. 「Visual C++ Compiler November 2012 CTP」で追加された6つの新機能

@IT

  1. Vista時代のVisual C++の流儀(前編)Vista到来。既存C/C++資産の.NET化を始めよう!
  2. Vista時代のVisual C++の流儀(中編)MFCから.NETへの実践的移行計画
  3. Vista時代のVisual C++の流儀(後編) STL/CLRによるDocument/Viewアーキテクチャ
  4. C++開発者のための単体テスト入門 第1回 C++開発者の皆さん。テスト、ちゃんとしていますか?
  5. C++開発者のための単体テスト入門 第2回 C++アプリケーションの効率的なテスト手法(CppUnit編)
  6. C++開発者のための単体テスト入門 第3回 C++アプリケーションの効率的なテスト手法(NUnit編)

AWARDS


Microsoft MVP
for Visual Developer - Visual C++


Wankuma MVP
for いぢわる C++


Nyantora MVP
for こくまろ中国茶

Xbox

Links

記事カテゴリ

書庫

日記カテゴリ

雲丹昆布(ウマソー

なんかここんとこ文字コードに関する相談ごとがやたらと舞い込みます。
UTF-8なファイルが増えてきて、従来のShift_JISなファイルをなんとかしたいとかその逆とか。

「IBM-ICUとか.NETとか使わず、Windows-APIだけで変換できんか? 」
て相談されまして、「なんとかなるなる!」てこしらえたのが UniConv
こんな感じで使えます。

#include <string>

#include <orz/UniConv.h>
using namespace std;

int main() {
    orz::UniConv sj(932); // Shift_JIS変換器
    orz::UniConv u6(CP_UTF8); // UTF_8変換器
    string sjs = "Shift_JISな文字列";
    wstring dbs = sj.toUnicode(sjs); // Shift_JIS -> Unicode
    string u8s = u8.fromUnicode(dbs); // Unicode -> UTF_8
    // operator()() を用意したので u8(sj(sjs)) でもおっけぃ
}

コードセットはコチラ、ScopedWatch, CsvParser も入ってるます。

投稿日時 : 2010年12月18日 9:48

コメントを追加

# re: 雲丹昆布(ウマソー 2010/12/20 0:15 Chiharu

std::string や std::wstring って &obj[0] で連続アドレス見て内容書き換えても問題ないんでしたっけ?うろ覚えですが、この操作ができるのは stl では std::vector のみだったような。

std::vector<wchar_t> result(ret, L'\0');
ret = ::MultiByteToWideChar(codepage_, 0, input, size, &result[0], ret);
return std::wstring(&result[0], result.size());

冗長ですけど、こんな感じが定石のような。覚え違いかな…。

# re: 雲丹昆布(ウマソー 2010/12/20 5:45 επιστημη

C++0Xではvectorとstringに対し「リニアだよ」って但し書きがついたハズっす。

# re: 雲丹昆布(ウマソー 2010/12/20 7:48 Chiharu

おー。素晴らしい。
…というべきか、今までなぜできなかったのか、というべきか。copy on write 実装への配慮でもあったのかな。

# 
Twitter Trackbacks for

????????????(????????????
[wankuma.com]
on Topsy.com
2010/12/20 17:43 Pingback/TrackBack


Twitter Trackbacks for

????????????(????????????
[wankuma.com]
on Topsy.com

# re: 雲丹昆布(ウマソー 2010/12/20 19:14 επιστημη

N3090に↓こんなんめっけました。

21.4.1 basic_string general requirements
5 The char-like objects in a basic_string object shall be stored contiguously. That is, for any basic_string object s, the identity
&*(s.begin() + n) == &*s.begin() + n shall hold for all values of n such that 0 <= n < s.size().

# re: 雲丹昆布(ウマソー 2010/12/20 20:44 Chiharu

なるほど。それだと連続ではあるんですけど、obj[n] の参照先を『書き換え』て良かったんでしたっけ?

std::string obj("tst");
std::string obj2(obj);
std::memcpy(&obj[0], "str", 3);

のような操作は copy on write 実装とそうでない実装で、挙動変わりそうですね。
整合性をとろうと思うと、obj[n] した時点で内部でコピー生成する実装になっていないといけなくなるような。
んー。と言って copy on write な実装は、噂を耳にするばかりで、そうでない実装としかめぐり合ったことはないのですが…。

とりあえず、連続なのは、いいことだと思います。

# re: 雲丹昆布(ウマソー 2010/12/20 21:28 επιστημη

typedef typename traits::char_type value_type;
typedef value_type& reference;
reference operator[](size_type pos);

なので結局
char& operator[](size_type pos);
ってことはoperator[]は(左辺に置いて)書き換え可能であり、さらに
「*(begin() + pos) を返す」と定義されてるので
&obj[0] への代入は合法と考えてよさげー

# re: 雲丹昆布(ウマソー 2010/12/21 17:29 Chiharu

なるほど。
もすこし端的に書くと obj[n] = 'c'; について、copy on write 環境で安全でないというのは、私の誤解みたいですね。
いずれにしても、C++0x のおかげで『なんでこれできないの?』的な挙動がずいぶん解消されているように感じます。
いいことですね。

# re: 雲丹昆布(ウマソー 2010/12/21 23:37 επιστημη

んみゅ。左辺値を返すメソッドが呼ばれた時点でcopy on writeを発動すればえぇですわね。
obj[n] = 'c'; だと = 'c' されたときじゃなく、obj[n]が評価された時点でc.o.w.と。
multi-threadを考慮してないライブラリでc.o.w.なstring実装を見たことあるですが、そいつもmulti-thread対応と同時にc.o.w.を捨ててました。同期がメンドくて遅くなるかららしいの。

# Illikebuisse spxrf 2021/07/03 15:13 pharmaceptica

define chloro https://pharmaceptica.com/

# does erectile dysfunction mean heart problems 2021/07/08 3:41 hydroxyl chloroquine

hydoxychloroquine https://plaquenilx.com/# hydroxychloroquine

# re: ????(???? 2021/07/11 21:52 side effects of hydroxychlor 200 mg

chloroguine https://chloroquineorigin.com/# hydrochloroqine

# re: ????(???? 2021/07/23 8:39 is hydroxychloroquine safe to take

is chloroquine an antibiotic https://chloroquineorigin.com/# hydroxychloroquine 200 mg tablet

# Great info. Lucky me I came across your website by accident (stumbleupon). I've bookmarked it for later! 2021/09/03 10:04 Great info. Lucky me I came across your website by

Great info. Lucky me I came across your website by accident (stumbleupon).

I've bookmarked it for later!

# I'm curious to find out what blog system you happen to be using? I'm experiencing some small security problems with my latest website and I would like to find something more safeguarded. Do you have any suggestions? 2021/09/05 6:33 I'm curious to find out what blog system you happe

I'm curious to find out what blog system you happen to be using?
I'm experiencing some small security problems with my latest website
and I would like to find something more safeguarded. Do you have any suggestions?

# Hello, I log on to your new stuff like every week. Your humoristic style is awesome, keep it up! scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery 2021/09/12 22:56 Hello, I log on to your new stuff like every week.

Hello, I log on to your new stuff like every week.

Your humoristic style is awesome, keep it up! scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# Hello, I log on to your new stuff like every week. Your humoristic style is awesome, keep it up! scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery 2021/09/12 22:57 Hello, I log on to your new stuff like every week.

Hello, I log on to your new stuff like every week.

Your humoristic style is awesome, keep it up! scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# Hello, I log on to your new stuff like every week. Your humoristic style is awesome, keep it up! scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery 2021/09/12 22:58 Hello, I log on to your new stuff like every week.

Hello, I log on to your new stuff like every week.

Your humoristic style is awesome, keep it up! scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# Hello, I log on to your new stuff like every week. Your humoristic style is awesome, keep it up! scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery 2021/09/12 22:59 Hello, I log on to your new stuff like every week.

Hello, I log on to your new stuff like every week.

Your humoristic style is awesome, keep it up! scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# I like the helpful info you supply in your articles. I will bookmark your weblog and check again here regularly. I'm slightly sure I'll be informed many new stuff right right here! Good luck for the following! ps4 games https://bitly.com/3z5HwTp ps4 2021/09/13 0:15 I like the helpful info you supply in your article

I like the helpful info you supply in your articles.
I will bookmark your weblog and check again here regularly.
I'm slightly sure I'll be informed many new stuff right right here!
Good luck for the following! ps4 games https://bitly.com/3z5HwTp ps4

# I like the helpful info you supply in your articles. I will bookmark your weblog and check again here regularly. I'm slightly sure I'll be informed many new stuff right right here! Good luck for the following! ps4 games https://bitly.com/3z5HwTp ps4 2021/09/13 0:16 I like the helpful info you supply in your article

I like the helpful info you supply in your articles.
I will bookmark your weblog and check again here regularly.
I'm slightly sure I'll be informed many new stuff right right here!
Good luck for the following! ps4 games https://bitly.com/3z5HwTp ps4

# I like the helpful info you supply in your articles. I will bookmark your weblog and check again here regularly. I'm slightly sure I'll be informed many new stuff right right here! Good luck for the following! ps4 games https://bitly.com/3z5HwTp ps4 2021/09/13 0:17 I like the helpful info you supply in your article

I like the helpful info you supply in your articles.
I will bookmark your weblog and check again here regularly.
I'm slightly sure I'll be informed many new stuff right right here!
Good luck for the following! ps4 games https://bitly.com/3z5HwTp ps4

# I like the helpful info you supply in your articles. I will bookmark your weblog and check again here regularly. I'm slightly sure I'll be informed many new stuff right right here! Good luck for the following! ps4 games https://bitly.com/3z5HwTp ps4 2021/09/13 0:18 I like the helpful info you supply in your article

I like the helpful info you supply in your articles.
I will bookmark your weblog and check again here regularly.
I'm slightly sure I'll be informed many new stuff right right here!
Good luck for the following! ps4 games https://bitly.com/3z5HwTp ps4

# Your means of telling all in this piece of writing is truly good, all be capable of easily know it, Thanks a lot. 2021/10/25 15:56 Your means of telling all in this piece of writing

Your means of telling all in this piece of writing is truly good, all be capable of easily know it, Thanks
a lot.

# My partner and I stumbled over here by a different page and thought I may as well check things out. I like what I see so now i am following you. Look forward to going over your web page again. 2021/10/27 5:30 My partner and I stumbled over here by a different

My partner and I stumbled over here by a different page and thought I may as well check things out.
I like what I see so now i am following you. Look forward to going over your web page again.

# My partner and I stumbled over here by a different page and thought I may as well check things out. I like what I see so now i am following you. Look forward to going over your web page again. 2021/10/27 5:31 My partner and I stumbled over here by a different

My partner and I stumbled over here by a different page and thought I may as well check things out.
I like what I see so now i am following you. Look forward to going over your web page again.

# My partner and I stumbled over here by a different page and thought I may as well check things out. I like what I see so now i am following you. Look forward to going over your web page again. 2021/10/27 5:32 My partner and I stumbled over here by a different

My partner and I stumbled over here by a different page and thought I may as well check things out.
I like what I see so now i am following you. Look forward to going over your web page again.

# My partner and I stumbled over here by a different page and thought I may as well check things out. I like what I see so now i am following you. Look forward to going over your web page again. 2021/10/27 5:33 My partner and I stumbled over here by a different

My partner and I stumbled over here by a different page and thought I may as well check things out.
I like what I see so now i am following you. Look forward to going over your web page again.

# Wow! In the end I got a blog from where I be capable of in fact take useful information regarding my study and knowledge. 2021/10/27 6:07 Wow! In the end I got a blog from where I be capab

Wow! In the end I got a blog from where I be capable of in fact take useful information regarding my study and knowledge.

# Wow! In the end I got a blog from where I be capable of in fact take useful information regarding my study and knowledge. 2021/10/27 6:08 Wow! In the end I got a blog from where I be capab

Wow! In the end I got a blog from where I be capable of in fact take useful information regarding my study and knowledge.

# Wow! In the end I got a blog from where I be capable of in fact take useful information regarding my study and knowledge. 2021/10/27 6:09 Wow! In the end I got a blog from where I be capab

Wow! In the end I got a blog from where I be capable of in fact take useful information regarding my study and knowledge.

# Wow! In the end I got a blog from where I be capable of in fact take useful information regarding my study and knowledge. 2021/10/27 6:10 Wow! In the end I got a blog from where I be capab

Wow! In the end I got a blog from where I be capable of in fact take useful information regarding my study and knowledge.

# I all the time used to study paragraph in news papers but now as I am a user of net so from now I am using net for articles, thanks to web. 2021/11/12 17:46 I all the time used to study paragraph in news pap

I all the time used to study paragraph in news papers but now as I am a user
of net so from now I am using net for articles, thanks to web.

# I all the time used to study paragraph in news papers but now as I am a user of net so from now I am using net for articles, thanks to web. 2021/11/12 17:47 I all the time used to study paragraph in news pap

I all the time used to study paragraph in news papers but now as I am a user
of net so from now I am using net for articles, thanks to web.

# I all the time used to study paragraph in news papers but now as I am a user of net so from now I am using net for articles, thanks to web. 2021/11/12 17:48 I all the time used to study paragraph in news pap

I all the time used to study paragraph in news papers but now as I am a user
of net so from now I am using net for articles, thanks to web.

# I all the time used to study paragraph in news papers but now as I am a user of net so from now I am using net for articles, thanks to web. 2021/11/12 17:48 I all the time used to study paragraph in news pap

I all the time used to study paragraph in news papers but now as I am a user
of net so from now I am using net for articles, thanks to web.

# It's impressive that you are getting thoughts from this piece of writing as well as from our argument made at this place. 2022/01/06 16:23 It's impressive that you are getting thoughts from

It's impressive that you are getting thoughts from this piece of writing as well
as from our argument made at this place.

# doxycycline mono https://doxycyline1st.com/
doxycycline prices 2022/02/26 0:55 Jusidkid

doxycycline mono https://doxycyline1st.com/
doxycycline prices

# buy doxycycline online 270 tabs https://doxycyline1st.com/
doxycycline 100mg online 2022/02/26 9:59 Jusidkid

buy doxycycline online 270 tabs https://doxycyline1st.com/
doxycycline 100mg online

# I am genuinely thankful to the holder of this site who has shared this impressive article at here. 2022/03/24 9:12 I am genuinely thankful to the holder of this site

I am genuinely thankful to the holder of this site who has shared this impressive article
at here.

# I am genuinely thankful to the holder of this site who has shared this impressive article at here. 2022/03/24 9:13 I am genuinely thankful to the holder of this site

I am genuinely thankful to the holder of this site who has shared this impressive article
at here.

# I am genuinely thankful to the holder of this site who has shared this impressive article at here. 2022/03/24 9:14 I am genuinely thankful to the holder of this site

I am genuinely thankful to the holder of this site who has shared this impressive article
at here.

# I am genuinely thankful to the holder of this site who has shared this impressive article at here. 2022/03/24 9:15 I am genuinely thankful to the holder of this site

I am genuinely thankful to the holder of this site who has shared this impressive article
at here.

# I'm impressed, I must say. Rarely do I encounter a blog that's equally educative and engaging, and let me tell you, you've hit the nail on the head. The problem is something that too few folks are speaking intelligently about. I'm very happy I found th 2022/03/24 17:49 I'm impressed, I must say. Rarely do I encounter a

I'm impressed, I must say. Rarely do I encounter a blog that's equally educative and engaging,
and let me tell you, you've hit the nail on the head.
The problem is something that too few folks are speaking intelligently about.
I'm very happy I found this during my search for something relating to this.

# I'm impressed, I must say. Rarely do I encounter a blog that's equally educative and engaging, and let me tell you, you've hit the nail on the head. The problem is something that too few folks are speaking intelligently about. I'm very happy I found th 2022/03/24 17:50 I'm impressed, I must say. Rarely do I encounter a

I'm impressed, I must say. Rarely do I encounter a blog that's equally educative and engaging,
and let me tell you, you've hit the nail on the head.
The problem is something that too few folks are speaking intelligently about.
I'm very happy I found this during my search for something relating to this.

# I'm impressed, I must say. Rarely do I encounter a blog that's equally educative and engaging, and let me tell you, you've hit the nail on the head. The problem is something that too few folks are speaking intelligently about. I'm very happy I found th 2022/03/24 17:51 I'm impressed, I must say. Rarely do I encounter a

I'm impressed, I must say. Rarely do I encounter a blog that's equally educative and engaging,
and let me tell you, you've hit the nail on the head.
The problem is something that too few folks are speaking intelligently about.
I'm very happy I found this during my search for something relating to this.

# I'm impressed, I must say. Rarely do I encounter a blog that's equally educative and engaging, and let me tell you, you've hit the nail on the head. The problem is something that too few folks are speaking intelligently about. I'm very happy I found th 2022/03/24 17:52 I'm impressed, I must say. Rarely do I encounter a

I'm impressed, I must say. Rarely do I encounter a blog that's equally educative and engaging,
and let me tell you, you've hit the nail on the head.
The problem is something that too few folks are speaking intelligently about.
I'm very happy I found this during my search for something relating to this.

# It's hard to come by knowledgeable people in this particular subject, however, you seem like you know what you're talking about! Thanks 2022/03/25 5:20 It's hard to come by knowledgeable people in this

It's hard to come by knowledgeable people in this particular subject, however, you seem like you know what you're talking about!
Thanks

# clomid online no prescription http://clomidus.store/ 2022/04/12 13:15 Clomids

clomid online no prescription http://clomidus.store/

# prednisone for sale in canada https://prednisoneus.shop/ 2022/04/16 23:09 Prednisone

prednisone for sale in canada https://prednisoneus.shop/

# fcprsfpegcxm 2022/05/09 9:52 qnlxph

how to make hydroxychloroquine https://keys-chloroquinehydro.com/

# generic lasix https://buylasix.icu/
lasix furosemide 40 mg 2022/06/24 17:26 LasixRx

generic lasix https://buylasix.icu/
lasix furosemide 40 mg

# clomid purchase online https://clomidonline.icu/ 2022/07/08 13:54 Clomidj

clomid purchase online https://clomidonline.icu/

# Fincar https://allpharm.store/ 2022/07/21 22:22 AllPharm

Fincar https://allpharm.store/

# how much is metformin 500 mg https://glucophage.top/
price of metformin in canada 2022/08/23 8:09 Niujsdkj

how much is metformin 500 mg https://glucophage.top/
price of metformin in canada

# best pill for ed https://ed-pills.xyz/
best treatment for ed 2022/09/15 19:28 EdPills

best pill for ed https://ed-pills.xyz/
best treatment for ed

# cheapest ed pills https://ed-pills.xyz/
male erection pills 2022/09/17 8:05 EdPills

cheapest ed pills https://ed-pills.xyz/
male erection pills

# I am not sure where you are getting your info, but good topic. I needs to spend some time learning more or understanding more. Thanks for wonderful information I was looking for this info for my mission. 2022/11/30 20:51 I am not sure where you are getting your info, but

I am not sure where you are getting your info, but good topic.
I needs to spend some time learning more or understanding more.

Thanks for wonderful information I was looking for
this info for my mission.

# I am not sure where you are getting your info, but good topic. I needs to spend some time learning more or understanding more. Thanks for wonderful information I was looking for this info for my mission. 2022/11/30 20:52 I am not sure where you are getting your info, but

I am not sure where you are getting your info, but good topic.
I needs to spend some time learning more or understanding more.

Thanks for wonderful information I was looking for
this info for my mission.

# purchase aralen online 2022/12/25 16:52 MorrisReaks

generic aralen 250 mg http://hydroxychloroquinex.com/

# doors2.txt;1 2023/03/14 15:34 aLwWLldxsluWMYQJhqy

doors2.txt;1

# doors2.txt;1 2023/03/14 17:00 seBFwVRFD

doors2.txt;1

# Много материала для психоанализа можно извлечь из повторного рассказа пациента. При этом ни в коем случае не нужно его останавливать, как бы этот рассказ не был противоречив и бессвязен. Особое внимание следует уделить сделанным в ходе рассказа оговорка 2023/03/28 21:54 Много материала для психоанализа можно извлечь из

Много материала для психоанализа можно
извлечь из повторного рассказа
пациента. При этом ни в коем случае не
нужно его останавливать, как бы этот
рассказ не был противоречив и бессвязен.
Особое внимание следует уделить сделанным в ходе
рассказа оговоркам, добавленным при повторном
рассказе деталям, помогающим провести связи между событиями,
которые на первый взгляд совершенно не связаны.
Как вернуть интерес к жизни: 11 шагов

# Много материала для психоанализа можно извлечь из повторного рассказа пациента. При этом ни в коем случае не нужно его останавливать, как бы этот рассказ не был противоречив и бессвязен. Особое внимание следует уделить сделанным в ходе рассказа оговорка 2023/03/28 21:55 Много материала для психоанализа можно извлечь из

Много материала для психоанализа можно
извлечь из повторного рассказа
пациента. При этом ни в коем случае не
нужно его останавливать, как бы этот
рассказ не был противоречив и бессвязен.
Особое внимание следует уделить сделанным в ходе
рассказа оговоркам, добавленным при повторном
рассказе деталям, помогающим провести связи между событиями,
которые на первый взгляд совершенно не связаны.
Как вернуть интерес к жизни: 11 шагов

# Много материала для психоанализа можно извлечь из повторного рассказа пациента. При этом ни в коем случае не нужно его останавливать, как бы этот рассказ не был противоречив и бессвязен. Особое внимание следует уделить сделанным в ходе рассказа оговорка 2023/03/28 21:55 Много материала для психоанализа можно извлечь из

Много материала для психоанализа можно
извлечь из повторного рассказа
пациента. При этом ни в коем случае не
нужно его останавливать, как бы этот
рассказ не был противоречив и бессвязен.
Особое внимание следует уделить сделанным в ходе
рассказа оговоркам, добавленным при повторном
рассказе деталям, помогающим провести связи между событиями,
которые на первый взгляд совершенно не связаны.
Как вернуть интерес к жизни: 11 шагов

# Много материала для психоанализа можно извлечь из повторного рассказа пациента. При этом ни в коем случае не нужно его останавливать, как бы этот рассказ не был противоречив и бессвязен. Особое внимание следует уделить сделанным в ходе рассказа оговорка 2023/03/28 21:55 Много материала для психоанализа можно извлечь из

Много материала для психоанализа можно
извлечь из повторного рассказа
пациента. При этом ни в коем случае не
нужно его останавливать, как бы этот
рассказ не был противоречив и бессвязен.
Особое внимание следует уделить сделанным в ходе
рассказа оговоркам, добавленным при повторном
рассказе деталям, помогающим провести связи между событиями,
которые на первый взгляд совершенно не связаны.
Как вернуть интерес к жизни: 11 шагов

タイトル
名前
URL
コメント