L259
Few things can feel as crushing as being rejected by someone who you're either dating or romantically interested in. No matter what stage of a relationship you're at, no one enjoys finding out that the person they love doesn't feel the same way. Knowing how to handle rejection in the best way possible is such an important skill because unfortunately, it's a part of life.
Coping with the negative emotions associated with being rejected by someone is far from easy. That said, it is definitely doable if you can reframe the situation for yourself in a way that's easier to accept. According to L.A.-based dating and couples therapist Dr. Gary Brown, the first step is letting go of the idea that you can change their mind about it. "One of the first things you can do to help you cope with rejection is to not fight the person who has rejected you," Dr. Brown tells Elite Daily. "Instead of arguing, try to find a way to gracefully accept that it is over. Trying to change their mind is only likely to make your pain even worse than it already is and begging for them to stay or remain in the relationship is degrading."
We can all probably think back on a situation where we were so unbelievably into someone and no matter what they would say or do, we'd find a justification that played into the narrative we were telling ourselves. However, Dr. Brown emphasizes the importance of realizing that carrying on a relationship that requires you to constantly chase after the other person isn't conducive to a satisfying dynamic.
"Consider asking yourself the following: 'Why would I want to be with this person — or anybody for that matter — that doesn’t want to be with me'," says Dr. Brown. "In reality, it might help to realize that they may be doing you a favor because you deserve to be with someone who really wants to be with you."
In the midst of an intense heartache, it may also be tempting to immediately deny to yourself that you're hurt or even care about the rejection. After all, having our egos bruised is never a fun thing to admit, even if it's just to ourselves. Dr. Brown advises against trying to squash your negative emotions. "Denying your pain is not going to help," confirms Dr. Brown. "Repressing your pain is only going to prolong your heartache. Instead, it’s important to acknowledge your pain openly so that you can begin to grieve the loss of your loved one."
If you're still wondering how to keep yourself from sinking into a post-heartbreak rut, Dr. Brown recommends focusing on hobbies or anything positive that brings you joy. "Most who have been rejected find it very helpful to continue or resume activities that have always brought them pleasure," explains Dr. Brown. "This can help you reestablish your independence and help you find some happiness in the midst of the pain."
It's also important to remember that no matter how terrible you're feeling at any given moment, as annoying as it sounds, this too shall pass. It may take a while, or you might move on faster than you'd have thought — either way, the worst case scenario would have been wasting your valuable time on someone who doesn't value you in the same way.
L259的更多相关文章
- L259 合同
We are satisfied with the terms of this contract for the most part, but we feel that your terms of p ...
- 使用pngquant来压缩png资源缩小apk
最近发现了一个叫做pngquant的工具,可以有效的压缩资源文件中的png文件,从而减小发布的apk的大小.我发现这个工具有两个特点: 1. 真无损,压缩后重新运行了我的app发现是没有任何区别的 2 ...
- 自动化工具之三:pywinauto
Python自动化工具:pywinauto 一.pywinauto的安装 (1)安装命令 pip install -U pywinauto/pip3 install -U pywinauto (2)验 ...
随机推荐
- android -------- Data Binding的使用 ( 五) include
Data Binding的中 include 标签的使用 inclune使用和原来一样,但要如何使数据也在 include中使用呢? 先看看我的布局文件 include的布局文件,也要使用 <l ...
- python记录_day17 类与类之间的关系
一.依赖关系 a类的对象是b类方法的参数 这种关系是我用着你,但你不属于我,比如公司和临时工的关系,是很弱的一种关系 class Zhiwu: def __init__(self,name,atk): ...
- python记录_day05 字典
字典 字典由花括号表示{ },元素是key:value的键值对,元素之间用逗号隔开 特点:1.字典中key是不能重复的 且是不可变的数据类型,因为字典是使用hash算法来计算key的哈希值,然后用哈希 ...
- 5月21 回话控制SESSION COOKIE
百科 HTTP普及(无状态性) 超文本传输协议(HTTP,HyperText Transfer Protocol)是互联网上应用最为广泛的一种网络协议.所有的WWW文件都必须遵守这个标准.设计HTTP ...
- 4月22 mysql常用函数
一.数学函数 数学函数主要用于处理数字,包括整型.浮点数等. ABS(x) 返回x的绝对值 SELECT ABS(-1) -- 返回1 CEIL(x),CEILING(x) 返回大于或等于x的最小整数 ...
- 函数指针做函数参数,其中有typedef的相关,感觉这是构成大河的小溪
#include<stdio.h> #include<stdlib.h> #include<string.h> int Funcadd(int a, int b) ...
- 在div中放一个相同大小的svg,实际显示的位置svg偏下
svg默认display为inline,改成block即可与div完全重合.
- bool类型为什么可以当做int
实际上bool型变量占用了一个字节的内存,当值为false的时候,实际存储的是0x00,为true时实际存储的是0x01,因此可以作为int整型使用 bool型只分0与非0,0为false,其余的包括 ...
- 【转】ASP.NET MVC中错误日志信息记录
MVC中有一个处理异常的过滤器 HandleErrorAttribute 1.新建一个类继承自 HandleErrorAttribute,然后重写OnException这个方法 public clas ...
- [LeetCode] 94. Binary Tree Inorder Traversal(二叉树的中序遍历) ☆☆☆
二叉树遍历(前序.中序.后序.层次.深度优先.广度优先遍历) 描述 解析 递归方案 很简单,先左孩子,输出根,再右孩子. 非递归方案 因为访问左孩子后要访问右孩子,所以需要栈这样的数据结构. 1.指针 ...